This commit is contained in:
maliakal_d 2021-09-03 17:42:14 +02:00
parent 665a44998b
commit 567f4bcab6

View File

@ -3734,12 +3734,14 @@ int program_fpga(int file_des) {
if (src == NULL) { if (src == NULL) {
strcpy(mess, "Could not allocate memory to get fpga program\n"); strcpy(mess, "Could not allocate memory to get fpga program\n");
LOG(logERROR, (mess)); LOG(logERROR, (mess));
fclose(fd); ret = FAIL;
return FAIL;
} }
} }
Server_SendResult(file_des, INT32, NULL, 0); Server_SendResult(file_des, INT32, NULL, 0);
if (ret == FAIL) {
fclose(fd);
return FAIL;
}
// copying program part by part // copying program part by part
uint64_t totalsize = filesize; uint64_t totalsize = filesize;
while (ret != FAIL && filesize) { while (ret != FAIL && filesize) {