remove xmalloc, switch to sshbuf
This commit is contained in:
markus@openbsd.org 2015-01-15 21:38:50 +00:00 коммит произвёл Damien Miller
Родитель e17ac01f8b
Коммит 3c4726f4c2
1 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -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 <markus@openbsd.org>
*
@ -25,9 +25,8 @@
#include <string.h>
#include <stdarg.h>
#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;
}