From cd992a90fb1ccba6f4b5f5b0a4bb61ef44ea3b3b Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Sat, 9 Nov 2013 13:27:59 +0100 Subject: [PATCH] poll: Fix realloc in ssh_poll_ctx_resize(). --- src/poll.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/poll.c b/src/poll.c index 8e21e0d5..2fce52a3 100644 --- a/src/poll.c +++ b/src/poll.c @@ -472,14 +472,18 @@ static int ssh_poll_ctx_resize(ssh_poll_ctx ctx, size_t new_size) { if (pollptrs == NULL) { return -1; } + ctx->pollptrs = pollptrs; pollfds = realloc(ctx->pollfds, sizeof(ssh_pollfd_t) * new_size); if (pollfds == NULL) { - ctx->pollptrs = realloc(pollptrs, sizeof(ssh_poll_handle) * ctx->polls_allocated); + pollptrs = realloc(ctx->pollptrs, sizeof(ssh_poll_handle) * ctx->polls_allocated); + if (pollptrs == NULL) { + return -1; + } + ctx->pollptrs = pollptrs; return -1; } - ctx->pollptrs = pollptrs; ctx->pollfds = pollfds; ctx->polls_allocated = new_size;