我正在尝试使用g_io_channel_read_chars方法从TCP套接字读取数据,并将其转换为长整数。我尝试使用strtol,atoi,而不是将ScanLine转换为gchar指针,使用ScanLine [0]访问ScanLine的第一个变量,以不同的方式声明FilterAmount,尽管如此,我的应用程序仍然在该行崩溃。有任何想法吗?

static gchar ScanLine[9640];
long int FilterAmount;

g_io_channel_read_chars (source, (gchar *) ScanLine,1,&BytesRead,&GlibError);
if (BytesRead != 1){
    return TRUE;
}

printf("This is my string: %s\n", ScanLine);
FilterAmount = strtol(ScanLine, NULL, 10);

printf语句的输出为“2”

最佳答案

strtol()带有C字符串参数:这意味着字符数组必须以NULL终止。你的可能不是。您必须在读取的最后一个字节之后添加终结符,或者自己解析数字(因为您知道何时停止解析)。

关于crash - Strtol和Glib缓冲区导致崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25391945/

10-10 16:07