我不应该在每次调用 strtok_r() 后释放 s_ptr(从字符串中提取标记)吗?
static void get_uevent_info(struct media_device_entry *md_ptr, char *dname)
{
FILE *fd;
char file[PATH_MAX], *name, *p;
char s[1024];
char *s_ptr;
snprintf(file, PATH_MAX, "%s/%s/uevent", dname, md_ptr->node);
fd = fopen(file, "r");
if (!fd)
return;
while (fgets(s, sizeof(s), fd)) {
p = strtok_r(s, "=", &s_ptr);
if (!p)
continue;
name = p;
p = strtok_r(NULL, "\n", &s_ptr);
if (!p)
continue;
if (!strcmp(name, "MAJOR"))
md_ptr->major = atol(p);
else if (!strcmp(name, "MINOR"))
md_ptr->minor = atol(p);
}
fclose(fd);
}
我从未使用过该功能,所以也许我错了。
最好的祝福。