summaryrefslogtreecommitdiff
path: root/auth2-chall.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2-chall.c')
-rw-r--r--auth2-chall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth2-chall.c b/auth2-chall.c
index 8860a94c5..d54ee2856 100644
--- a/auth2-chall.c
+++ b/auth2-chall.c
@@ -290,7 +290,7 @@ input_userauth_info_response(int type, u_int32_t seq, void *ctxt)
290 if (nresp > 100) 290 if (nresp > 100)
291 fatal("input_userauth_info_response: too many replies"); 291 fatal("input_userauth_info_response: too many replies");
292 if (nresp > 0) { 292 if (nresp > 0) {
293 response = xmalloc(nresp * sizeof(char *)); 293 response = xcalloc(nresp, sizeof(char *));
294 for (i = 0; i < nresp; i++) 294 for (i = 0; i < nresp; i++)
295 response[i] = packet_get_string(NULL); 295 response[i] = packet_get_string(NULL);
296 } 296 }