summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2020-03-06 18:15:38 +0000
committerDamien Miller <djm@mindrot.org>2020-03-13 13:13:30 +1100
commit5f25afe5216ba7f8921e04f79aa4ca0624eca820 (patch)
tree2de832afedadabfc30a9df9d371af68b823cb258
parentff2acca039aef16a15fce409163df404858f7aa5 (diff)
downloadopenssh-git-5f25afe5216ba7f8921e04f79aa4ca0624eca820.tar.gz
upstream: fix null-deref on calloc failure; ok djm
OpenBSD-Commit-ID: a313519579b392076b7831ec022dfdefbec8724a
-rw-r--r--auth-options.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/auth-options.c b/auth-options.c
index b63782de..696ba6ac 100644
--- a/auth-options.c
+++ b/auth-options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth-options.c,v 1.91 2020/02/26 13:40:09 jsg Exp $ */
+/* $OpenBSD: auth-options.c,v 1.92 2020/03/06 18:15:38 markus Exp $ */
/*
* Copyright (c) 2018 Damien Miller <djm@mindrot.org>
*
@@ -734,9 +734,11 @@ deserialise_array(struct sshbuf *m, char ***ap, size_t *np)
*np = n;
n = 0;
out:
- for (i = 0; i < n; i++)
- free(a[i]);
- free(a);
+ if (a != NULL) {
+ for (i = 0; i < n; i++)
+ free(a[i]);
+ free(a);
+ }
sshbuf_free(b);
return r;
}