扫描拦截排除功能导致内存泄漏;dictator_malloc函数使用参数不正确

This commit is contained in:
liuxueli
2020-10-15 14:16:55 +08:00
parent 78b2c7e3ed
commit 899ae69a4b
2 changed files with 14 additions and 2 deletions

View File

@@ -147,11 +147,17 @@ static int get_data_center(char *accept_tag, char *data_center, int data_center_
len=strlen(v_item->valuestring);
memcpy(data_center, v_item->valuestring, (len>data_center_len-1 ? data_center_len-1 : len));
}
cJSON_Delete(object);
object=NULL;
return 1;
}
}
}
}
cJSON_Delete(object);
object=NULL;
}
return 0;