diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2019-05-14 21:39:46 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2019-05-14 21:42:28 +0200 |
commit | bb31860b6e034e99d75173ed39e72e2b3a6ebe66 (patch) | |
tree | c1ff24cbd587eea3b8f583780010fc055a7d0897 /doc/examples/tlsproxy/buffer.c | |
parent | 3cc7043df62cf20f908316fefdc065e946eebfa3 (diff) | |
download | gnutls-tmp-check-allocations.tar.gz |
Check all memory allocation in examples and certtooltmp-check-allocations
Resolves: #739
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Diffstat (limited to 'doc/examples/tlsproxy/buffer.c')
-rw-r--r-- | doc/examples/tlsproxy/buffer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/examples/tlsproxy/buffer.c b/doc/examples/tlsproxy/buffer.c index cd1ff37eea..05c82121fe 100644 --- a/doc/examples/tlsproxy/buffer.c +++ b/doc/examples/tlsproxy/buffer.c @@ -80,6 +80,8 @@ buffer_t * bufNew (ssize_t size, ssize_t hwm) { buffer_t *b = calloc (1, sizeof (buffer_t)); + if (!b) return NULL; + b->buf = calloc (1, size); b->size = size; b->hwm = hwm; |