We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7f4719 commit b56cb4cCopy full SHA for b56cb4c
espcomm/espcomm.c
@@ -529,20 +529,22 @@ bool espcomm_upload_file(const char *name)
529
530
size_t cb = fread(file_contents, 1, st.st_size, f);
531
fclose(f);
532
- free(file_contents);
533
534
if (cb != st.st_size)
535
{
536
LOGERR("failed to read file contents");
+ free(file_contents);
537
return false;
538
}
539
540
if (!espcomm_upload_mem(file_contents, st.st_size))
541
542
LOGERR("espcomm_upload_mem failed");
543
544
545
546
547
548
return true;
549
550
@@ -671,4 +673,4 @@ bool espcomm_erase_flash()
671
673
send_packet.checksum = 0;
672
674
espcomm_send_command(RAM_DOWNLOAD_END, (unsigned char*) ram_packet, 8, 0);
675
-}
676
+}
0 commit comments