日志存储文件关于文件指针的判断问题
hewenge opened this issue · 1 comments
hewenge commented
-
elog_file_config函数中打开配置文件的代码如下:
if (local_cfg.name != NULL && strlen(local_cfg.name) > 0)
fp = fopen(local_cfg.name, "a+");
} -
elog_file_write这个函数中就直接对fp进行操作,而没有继续对文件指针进行判断,如果上面配置的文件不存在,这里会导致异常。
BrotherLAU commented
这个接口没问题