C - 尝试将 return 值从函数分配给变量会导致分段错误
C - trying to assign return value from a function to a variable causes segmentation fault
我会尽量post只写重要的部分,因为整个程序有 1000 多行。它通常不会崩溃,可以正常运行数天。今天我一直在尝试实现一些 Redis 函数来与需要从 MySQL 数据库获取新数据的程序进行通信。
int RedisCheckIfUpdate(redisContext *redis_c) {
redisReply *redis_reply;
redis_reply = redisCommand(redis_c, "GETSET update_status 0");
if (redis_reply->type == REDIS_REPLY_STRING) {
if (strcmp(redis_reply->str, "newsticker") == 0) {
freeReplyObject(redis_reply);
return 1;
} else if (strcmp(redis_reply->str, "slides") == 0) {
freeReplyObject(redis_reply);
return 2;
}
}
freeReplyObject(redis_reply);
return 0;
}
int main(int argc, char **argv) {
int redis_update_status;
redisContext *redis_c;
redis_c = redisConnect((char*)"127.0.0.1", 6379);
if (redis_c->err) {
printf("Connection error: %s\n", redis_c->errstr);
redisFree(redis_c);
exit(1);
}
while (1) {
redis_update_status = RedisCheckIfUpdate(redis_c); // THIS SINGLE LINE CAUSES INSTANT SEGFAULT!
RedisCheckIfUpdate(redis_c); // THIS WORKS
if (RedisCheckIfUpdate(redis_c) == 1) {
MYSQLNewsticker(con, &nt);
} else if (RedisCheckIfUpdate(redis_c) == 2) {
MYSQLSlides(con, &pl);
}
}
}
这一行...
redis_update_status = RedisCheckIfUpdate(redis_c);
...导致程序在第一次循环迭代时立即崩溃。一旦我将其注释掉,它就永远不会崩溃并保持 运行 即使正在调用完全相同的函数 - 只是没有将 return 值分配给任何东西。
我可能有一些解决方法,但我就是不明白为什么会出错?它不是那么复杂的功能,我想要实现的只是将 return 值分配给变量。变量没有其他变化。如果我注释掉上述行,我什至会收到一条警告,指出 redis_update_status 在编译期间未使用...
编辑:我已经从函数体中删除了除 "return 0" 之外的所有内容,但它仍然崩溃!
正如某些人在评论中指出的那样,分段错误是由我发布的代码之外的原因引起的:
char time_formatted[30], date_formatted[30];
// Redis connect stuff
while (1) {
// redis_update_status = RedisCheckIfUpdate(); part goes here
(...)
// BEGIN header
TextMid(1760, 970, time_formatted, SegoeUISB, 60);
RGBA(41, 39, 39, 1, temp_fill_color);
vgSetParameterfv(temp_fill, VG_PAINT_COLOR, 4, temp_fill_color);
vgSetPaint(temp_fill, VG_FILL_PATH);
WTextMid(1760, 935, date_formatted, SegoeUI, 19);
// END header
(...)
// BEGIN update datetime values
time(&rawtime);
timeinfo = localtime(&rawtime);
strftime(time_formatted, 30, "%H:%M", timeinfo);
wcsftime(date_formatted, 30, L"%A, %d.%m.%Y", timeinfo);
// END update datetime values
}
如您所见,我试图从字符串变量中绘制时钟和日期文本,这些变量在第一次迭代时未设置任何值。在循环开始时移动 update datetime values 部分后,我就能够 运行 正确地 运行 我的整个程序,包括 Redis 部分。
这是一个非常愚蠢的错误,我一定是在编写程序的早期就犯了这个错误,而且几个星期都没有引起注意。对我来说唯一令人难以置信的事情是,为什么直到现在,当我添加一个与崩溃部分完全无关的简单 Redis 函数时,它在那几周都没有崩溃...
我会尽量post只写重要的部分,因为整个程序有 1000 多行。它通常不会崩溃,可以正常运行数天。今天我一直在尝试实现一些 Redis 函数来与需要从 MySQL 数据库获取新数据的程序进行通信。
int RedisCheckIfUpdate(redisContext *redis_c) {
redisReply *redis_reply;
redis_reply = redisCommand(redis_c, "GETSET update_status 0");
if (redis_reply->type == REDIS_REPLY_STRING) {
if (strcmp(redis_reply->str, "newsticker") == 0) {
freeReplyObject(redis_reply);
return 1;
} else if (strcmp(redis_reply->str, "slides") == 0) {
freeReplyObject(redis_reply);
return 2;
}
}
freeReplyObject(redis_reply);
return 0;
}
int main(int argc, char **argv) {
int redis_update_status;
redisContext *redis_c;
redis_c = redisConnect((char*)"127.0.0.1", 6379);
if (redis_c->err) {
printf("Connection error: %s\n", redis_c->errstr);
redisFree(redis_c);
exit(1);
}
while (1) {
redis_update_status = RedisCheckIfUpdate(redis_c); // THIS SINGLE LINE CAUSES INSTANT SEGFAULT!
RedisCheckIfUpdate(redis_c); // THIS WORKS
if (RedisCheckIfUpdate(redis_c) == 1) {
MYSQLNewsticker(con, &nt);
} else if (RedisCheckIfUpdate(redis_c) == 2) {
MYSQLSlides(con, &pl);
}
}
}
这一行...
redis_update_status = RedisCheckIfUpdate(redis_c);
...导致程序在第一次循环迭代时立即崩溃。一旦我将其注释掉,它就永远不会崩溃并保持 运行 即使正在调用完全相同的函数 - 只是没有将 return 值分配给任何东西。
我可能有一些解决方法,但我就是不明白为什么会出错?它不是那么复杂的功能,我想要实现的只是将 return 值分配给变量。变量没有其他变化。如果我注释掉上述行,我什至会收到一条警告,指出 redis_update_status 在编译期间未使用...
编辑:我已经从函数体中删除了除 "return 0" 之外的所有内容,但它仍然崩溃!
正如某些人在评论中指出的那样,分段错误是由我发布的代码之外的原因引起的:
char time_formatted[30], date_formatted[30];
// Redis connect stuff
while (1) {
// redis_update_status = RedisCheckIfUpdate(); part goes here
(...)
// BEGIN header
TextMid(1760, 970, time_formatted, SegoeUISB, 60);
RGBA(41, 39, 39, 1, temp_fill_color);
vgSetParameterfv(temp_fill, VG_PAINT_COLOR, 4, temp_fill_color);
vgSetPaint(temp_fill, VG_FILL_PATH);
WTextMid(1760, 935, date_formatted, SegoeUI, 19);
// END header
(...)
// BEGIN update datetime values
time(&rawtime);
timeinfo = localtime(&rawtime);
strftime(time_formatted, 30, "%H:%M", timeinfo);
wcsftime(date_formatted, 30, L"%A, %d.%m.%Y", timeinfo);
// END update datetime values
}
如您所见,我试图从字符串变量中绘制时钟和日期文本,这些变量在第一次迭代时未设置任何值。在循环开始时移动 update datetime values 部分后,我就能够 运行 正确地 运行 我的整个程序,包括 Redis 部分。
这是一个非常愚蠢的错误,我一定是在编写程序的早期就犯了这个错误,而且几个星期都没有引起注意。对我来说唯一令人难以置信的事情是,为什么直到现在,当我添加一个与崩溃部分完全无关的简单 Redis 函数时,它在那几周都没有崩溃...