summaryrefslogtreecommitdiff
path: root/source3/lib/util_sock.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/util_sock.c')
-rw-r--r--source3/lib/util_sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c
index 27a7551e37..c09e4579c4 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -818,7 +818,7 @@ BOOL open_any_socket_out(struct sockaddr_in *addrs, int num_addrs,
timeout *= 1000; /* convert to microseconds */
- sockets = malloc(num_addrs * sizeof(*sockets));
+ sockets = SMB_MALLOC_ARRAY(int, num_addrs);
if (sockets == NULL)
return False;