|
|
发表于 2006-1-3 19:29:08
|
显示全部楼层
Post by dyte200
点“获取列表”退出的主要原因可能是文件data.c中函数
char * get_file_name()
{
。。。
user_name = strdupa(g_strconcat("/tmp/",user_name,"-channellist",NULL));
。。。
}
其中一句出错了,改成:
char * get_file_name()
{
。。。
user_name = g_strconcat("/tmp/",user_name,"-channellist",NULL);
。。。
}
就正常了。
附修改后的版本:
这是返回栈空间地址的问题,我上一版就提出来了,怎么还没该过来:ask :ask |
|