upstream: Copy bytes from the_banana[] rather than banana()

Fixes test failure due to segfault seen on arm64 with xonly snap.

ok djm

OpenBSD-Regress-ID: 86e2aa4bbd1dff1bc4ebb2969c0d6474485be046
This commit is contained in:
tb@openbsd.org 2023-01-04 22:48:57 +00:00 committed by Darren Tucker
parent ab6bb69e25
commit 018d671d78
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: test_sshkey.c,v 1.22 2021/12/14 21:25:27 deraadt Exp $ */ /* $OpenBSD: test_sshkey.c,v 1.23 2023/01/04 22:48:57 tb Exp $ */
/* /*
* Regress test for sshkey.h key management API * Regress test for sshkey.h key management API
* *
@ -144,7 +144,7 @@ banana(u_char *s, size_t l)
memcpy(s + o, "nanananana", l - o); memcpy(s + o, "nanananana", l - o);
break; break;
} }
memcpy(s + o, banana, sizeof(the_banana)); memcpy(s + o, the_banana, sizeof(the_banana));
} }
} }