8000 Updated mem free in socketfifo.c required for last commit's changes i… · pycom/pycom-micropython-sigfox@669dfe2 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 669dfe2

Browse files
committed
Updated mem free in socketfifo.c required for last commit's changes in ftp.c
1 parent 8495c7d commit 669dfe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

esp32/util/socketfifo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void SOCKETFIFO_Flush (void) {
6262
SocketFifoElement_t element;
6363
while (SOCKETFIFO_Pop(&element)) {
6464
if (element.freedata) {
65-
vPortFree(element.data);
65+
free(element.data);
6666
}
6767
}
6868
}

0 commit comments

Comments
 (0)
0