diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-15 04:16:01 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-15 04:16:01 +0000 |
commit | 4b7de2299951cd13084305910d16939cd73ac817 (patch) | |
tree | 75823d4cc2957335a78466943c515e7fca76d24c | |
parent | 550145d49e2bc6643758197dde2e0e92ec1e022b (diff) | |
download | tinyproxy-4b7de2299951cd13084305910d16939cd73ac817.tar.gz tinyproxy-4b7de2299951cd13084305910d16939cd73ac817.zip |
Added a test to make sure the "whole_buffer" could be allocated.
Diffstat (limited to '')
-rw-r--r-- | src/sock.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: sock.c,v 1.25 2002-04-13 19:03:18 rjkaes Exp $ +/* $Id: sock.c,v 1.26 2002-04-15 04:16:01 rjkaes Exp $ * * Sockets are created and destroyed here. When a new connection comes in from * a client, we need to copy the socket and the create a second socket to the @@ -477,8 +477,10 @@ readline(int fd, char **whole_buffer) } *whole_buffer = safemalloc(whole_buffer_len + 1); - if (!*whole_buffer) - return -ENOMEMORY; + if (!*whole_buffer) { + ret = -ENOMEMORY; + goto CLEANUP; + } *(*whole_buffer + whole_buffer_len) = '\0'; |