mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
fix minor memory leak triggered upon test failure
This commit is contained in:
parent
95fd093c4a
commit
ad1dd08693
@ -620,7 +620,7 @@ static int send_doc(curl_socket_t sock, struct httprequest *req)
|
||||
ssize_t written;
|
||||
size_t count;
|
||||
const char *buffer;
|
||||
char *ptr;
|
||||
char *ptr=NULL;
|
||||
FILE *stream;
|
||||
char *cmd=NULL;
|
||||
size_t cmdsize=0;
|
||||
@ -792,6 +792,10 @@ static int send_doc(curl_socket_t sock, struct httprequest *req)
|
||||
if(sendfailure) {
|
||||
logmsg("Sending response failed. Only (%d bytes) of (%d bytes) were sent",
|
||||
responsesize-count, responsesize);
|
||||
if(ptr)
|
||||
free(ptr);
|
||||
if(cmd)
|
||||
free(cmd);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user