Skip to content

Commit b56cb4c

Browse files
committed
Fix free-before-use error
1 parent f7f4719 commit b56cb4c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

espcomm/espcomm.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -529,20 +529,22 @@ bool espcomm_upload_file(const char *name)
529529

530530
size_t cb = fread(file_contents, 1, st.st_size, f);
531531
fclose(f);
532-
free(file_contents);
533532

534533
if (cb != st.st_size)
535534
{
536535
LOGERR("failed to read file contents");
536+
free(file_contents);
537537
return false;
538538
}
539539

540540
if (!espcomm_upload_mem(file_contents, st.st_size))
541541
{
542542
LOGERR("espcomm_upload_mem failed");
543+
free(file_contents);
543544
return false;
544545
}
545546

547+
free(file_contents);
546548
return true;
547549
}
548550

@@ -671,4 +673,4 @@ bool espcomm_erase_flash()
671673
send_packet.checksum = 0;
672674
espcomm_send_command(RAM_DOWNLOAD_END, (unsigned char*) ram_packet, 8, 0);
673675
return true;
674-
}
676+
}

0 commit comments

Comments
 (0)