1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-01 23:46:53 +00:00

Fix an uninitialization problem.

This commit is contained in:
cuihaikuo
2018-08-30 17:22:23 +08:00
parent 480f940508
commit ba089662b6

View File

@@ -143,8 +143,8 @@ start_index_task (gpointer data, gpointer user_data)
IndexPara *idx_para = data;
SeafRepo *repo = idx_para->repo;
GList *ptr = NULL, *id_list = NULL, *size_list = NULL;
char *path;
char *ret_json;
char *path = NULL;
char *ret_json = NULL;
char hex[41];
unsigned char sha1[20];
int ret = 0;