From 3c4726f4c24118e8f1bb80bf75f1456c76df072c Mon Sep 17 00:00:00 2001 From: "markus@openbsd.org" Date: Thu, 15 Jan 2015 21:38:50 +0000 Subject: [PATCH] upstream commit remove xmalloc, switch to sshbuf --- ssh-ed25519.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ssh-ed25519.c b/ssh-ed25519.c index 9922816c7..b159ff5ee 100644 --- a/ssh-ed25519.c +++ b/ssh-ed25519.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-ed25519.c,v 1.5 2014/10/14 03:09:59 daniel Exp $ */ +/* $OpenBSD: ssh-ed25519.c,v 1.6 2015/01/15 21:38:50 markus Exp $ */ /* * Copyright (c) 2013 Markus Friedl * @@ -25,9 +25,8 @@ #include #include -#include "xmalloc.h" #include "log.h" -#include "buffer.h" +#include "sshbuf.h" #define SSHKEY_INTERNAL #include "sshkey.h" #include "ssherr.h" @@ -134,7 +133,7 @@ ssh_ed25519_verify(const struct sshkey *key, } smlen = len + datalen; mlen = smlen; - if ((sm = malloc(smlen)) == NULL || (m = xmalloc(mlen)) == NULL) { + if ((sm = malloc(smlen)) == NULL || (m = malloc(mlen)) == NULL) { r = SSH_ERR_ALLOC_FAIL; goto out; } @@ -165,4 +164,3 @@ ssh_ed25519_verify(const struct sshkey *key, free(ktype); return r; } -