aboutsummaryrefslogtreecommitdiff
path: root/base64.c
diff options
context:
space:
mode:
authorJames Yonan2010-12-13 09:27:08 +0000
committerJames Yonan2010-12-13 09:27:08 +0000
commitae1884c0cbf42c21e54922c150cde44c43200340 (patch)
tree1e6d88d1b07106618ed92e69c68f876658664bc1 /base64.c
parent7621741b480f93411928c66735d2ee9c7f69de3b (diff)
downloadopenvpn-ae1884c0cbf42c21e54922c150cde44c43200340.zip
openvpn-ae1884c0cbf42c21e54922c150cde44c43200340.tar.gz
Misc fixes to r6708.
Fixed issue where "signal SIGTERM" entered from the management interface might get subsequently downgraded to a SIGUSR1. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@6716 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'base64.c')
-rw-r--r--base64.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/base64.c b/base64.c
index 8f0fb6c..26ca7d7 100644
--- a/base64.c
+++ b/base64.c
@@ -50,6 +50,8 @@ base64_encode(const void *data, int size, char **str)
int c;
const unsigned char *q;
+ if (size < 0)
+ return -1;
p = s = (char *) malloc(size * 4 / 3 + 4);
if (p == NULL)
return -1;