summaryrefslogtreecommitdiff
path: root/sshbuf-getput-basic.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshbuf-getput-basic.c')
-rw-r--r--sshbuf-getput-basic.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sshbuf-getput-basic.c b/sshbuf-getput-basic.c
index da834d008..9803fb5ed 100644
--- a/sshbuf-getput-basic.c
+++ b/sshbuf-getput-basic.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshbuf-getput-basic.c,v 1.10 2019/12/13 19:09:37 djm Exp $ */ 1/* $OpenBSD: sshbuf-getput-basic.c,v 1.11 2020/06/05 03:25:35 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2011 Damien Miller 3 * Copyright (c) 2011 Damien Miller
4 * 4 *
@@ -338,6 +338,8 @@ sshbuf_put(struct sshbuf *buf, const void *v, size_t len)
338int 338int
339sshbuf_putb(struct sshbuf *buf, const struct sshbuf *v) 339sshbuf_putb(struct sshbuf *buf, const struct sshbuf *v)
340{ 340{
341 if (v == NULL)
342 return 0;
341 return sshbuf_put(buf, sshbuf_ptr(v), sshbuf_len(v)); 343 return sshbuf_put(buf, sshbuf_ptr(v), sshbuf_len(v));
342} 344}
343 345