diff options
author | Cristian Greco <[email protected]> | 2011-02-23 01:41:23 +0100 |
---|---|---|
committer | Cristian Greco <[email protected]> | 2011-02-23 01:41:23 +0100 |
commit | 47f9ef2ee5f3d9a79038fe8318c740a7c4345541 (patch) | |
tree | ea5828c08ce1c175aa8aa61667903eba042cee56 /erts/etc/common/inet_gethost.c | |
parent | b0d6abb72cf32df548703b284b737a4a7c0a9d8a (diff) | |
download | otp-47f9ef2ee5f3d9a79038fe8318c740a7c4345541.tar.gz otp-47f9ef2ee5f3d9a79038fe8318c740a7c4345541.tar.bz2 otp-47f9ef2ee5f3d9a79038fe8318c740a7c4345541.zip |
Fix some wrong pointer dereferences
Diffstat (limited to 'erts/etc/common/inet_gethost.c')
-rw-r--r-- | erts/etc/common/inet_gethost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/etc/common/inet_gethost.c b/erts/etc/common/inet_gethost.c index 8bd9368aa1..18ccf974aa 100644 --- a/erts/etc/common/inet_gethost.c +++ b/erts/etc/common/inet_gethost.c @@ -1297,7 +1297,7 @@ static int read_request(AddrByte **buff, size_t *buff_size) } if (siz > *buff_size) { - if (buff_size == 0) { + if (*buff_size == 0) { *buff = ALLOC((*buff_size = siz)); } else { *buff = REALLOC(*buff, (*buff_size = siz)); |