Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libskey avoid an unlikely buffer truncation.
details: https://anonhg.NetBSD.org/src/rev/5d55a0f471a6
branches: trunk
changeset: 378402:5d55a0f471a6
user: mrg <mrg%NetBSD.org@localhost>
date: Mon Apr 12 09:17:10 2021 +0000
description:
avoid an unlikely buffer truncation.
diffstat:
lib/libskey/put.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 5e4c45ff3082 -r 5d55a0f471a6 lib/libskey/put.c
--- a/lib/libskey/put.c Mon Apr 12 09:15:52 2021 +0000
+++ b/lib/libskey/put.c Mon Apr 12 09:17:10 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: put.c,v 1.14 2019/10/03 17:08:26 christos Exp $ */
+/* $NetBSD: put.c,v 1.15 2021/04/12 09:17:10 mrg Exp $ */
/* S/KEY v1.1b (put.c)
*
@@ -12,7 +12,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: put.c,v 1.14 2019/10/03 17:08:26 christos Exp $");
+__RCSID("$NetBSD: put.c,v 1.15 2021/04/12 09:17:10 mrg Exp $");
#include <stdio.h>
#include <string.h>
@@ -2122,7 +2122,7 @@ int etob(char *out, const char *e)
{
char *word;
int i, p, v, l, low, high;
- char b[9];
+ char b[11];
char input[36];
char *last;
Home |
Main Index |
Thread Index |
Old Index