diff options
| author | Garrett D'Amore <garrett@damore.org> | 2018-08-06 21:26:31 +0300 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2018-08-06 22:51:37 +0300 |
| commit | 8bea70c68e3f7ac23d4ff10b758af718ffb94263 (patch) | |
| tree | fa0acc0c76dce541911cd9095c5c78aec31e9f71 /src/platform/posix | |
| parent | b717dfefa5b1e8fa20ded02f3a79e2c8d2f24f41 (diff) | |
| download | nng-8bea70c68e3f7ac23d4ff10b758af718ffb94263.tar.gz nng-8bea70c68e3f7ac23d4ff10b758af718ffb94263.tar.bz2 nng-8bea70c68e3f7ac23d4ff10b758af718ffb94263.zip | |
fixes #611 Memory Leaks under Windows
fixes #622 incorrect assumptions about malloc(0)
Windows actually allocates an object of size zero when calling
malloc on size zero. This is unusual behavior, and we just
add logic to work more like malloc on POSIX systems.
Other systems can return non-NULL objects to fixed pages here.
We think the best option here is to uniformly return NULL from
our APIs in these circumstances, and to include testing to validate
that.
Diffstat (limited to 'src/platform/posix')
| -rw-r--r-- | src/platform/posix/posix_alloc.c | 4 | ||||
| -rw-r--r-- | src/platform/posix/posix_file.c | 20 |
2 files changed, 14 insertions, 10 deletions
diff --git a/src/platform/posix/posix_alloc.c b/src/platform/posix/posix_alloc.c index f4b0245c..f0847408 100644 --- a/src/platform/posix/posix_alloc.c +++ b/src/platform/posix/posix_alloc.c @@ -17,13 +17,13 @@ void * nni_alloc(size_t sz) { - return (malloc(sz)); + return (sz > 0 ? malloc(sz) : NULL); } void * nni_zalloc(size_t sz) { - return (calloc(1, sz)); + return (sz > 0 ? calloc(1, sz) : NULL); } void diff --git a/src/platform/posix/posix_file.c b/src/platform/posix/posix_file.c index b21c0509..5d918d6b 100644 --- a/src/platform/posix/posix_file.c +++ b/src/platform/posix/posix_file.c @@ -115,14 +115,18 @@ nni_plat_file_get(const char *name, void **datap, size_t *lenp) } len = st.st_size; - if ((data = nni_alloc(len)) == NULL) { - rv = NNG_ENOMEM; - goto done; - } - if (fread(data, 1, len, f) != len) { - rv = nni_plat_errno(errno); - nni_free(data, len); - goto done; + if (len > 0) { + if ((data = nni_alloc(len)) == NULL) { + rv = NNG_ENOMEM; + goto done; + } + if (fread(data, 1, len, f) != len) { + rv = nni_plat_errno(errno); + nni_free(data, len); + goto done; + } + } else { + data = NULL; } *datap = data; *lenp = len; |
