diff options
Diffstat (limited to 'src/string.c')
-rw-r--r-- | src/string.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/string.c b/src/string.c index 06042aea..33920e68 100644 --- a/src/string.c +++ b/src/string.c @@ -131,8 +131,12 @@ size_t ssh_string_len(struct ssh_string_struct *s) { * string may not be readable with regular libc functions. */ char *ssh_string_to_char(struct ssh_string_struct *s) { - size_t len = ntohl(s->size) + 1; - char *new = malloc(len); + size_t len; + char *new; + if(s==NULL) + return NULL; + len = ntohl(s->size) + 1; + new = malloc(len); if (new == NULL) { return NULL; |