Fixed build errors in makefsdata introduced with the last commit

This commit is contained in:
goldsimon 2017-11-21 20:08:40 +01:00
parent 5500a36b29
commit b48106c662

View File

@ -754,7 +754,7 @@ static int checkSsiByFilelist(const char* filename_listfile)
fseek(f, 0, SEEK_SET); fseek(f, 0, SEEK_SET);
buf = (char*)malloc(fsize); buf = (char*)malloc(fsize);
if (!buf) { if (!buf) {
printf("failed to allocate ssi file buffer\n", errno); printf("failed to allocate ssi file buffer\n");
fclose(f); fclose(f);
return 0; return 0;
} }
@ -762,7 +762,7 @@ static int checkSsiByFilelist(const char* filename_listfile)
readcount = fread(buf, 1, fsize, f); readcount = fread(buf, 1, fsize, f);
fclose(f); fclose(f);
if ((readcount > fsize) || !readcount) { if ((readcount > fsize) || !readcount) {
printf("failed to read data from ssi file\n", errno); printf("failed to read data from ssi file\n");
return 0; return 0;
} }
@ -779,7 +779,7 @@ static int checkSsiByFilelist(const char* filename_listfile)
/* allocate the line pointer array */ /* allocate the line pointer array */
lines = (char**)malloc(sizeof(char*) * num_lines); lines = (char**)malloc(sizeof(char*) * num_lines);
if (!lines) { if (!lines) {
printf("failed to allocate ssi line buffer\n", errno); printf("failed to allocate ssi line buffer\n");
return 0; return 0;
} }
memset(lines, 0, sizeof(char*) * num_lines); memset(lines, 0, sizeof(char*) * num_lines);