summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoravsm <avsm@openbsd.org>2003-04-09 16:38:29 +0000
committeravsm <avsm@openbsd.org>2003-04-09 16:38:29 +0000
commit7aaa7747d3ae78da25554427b4948ae5bc89190b (patch)
tree6dbe017f54b491fa4cb732ac1535402f52a9642c
parentLess noise for missing crl dir, demoted to debug message. (diff)
downloadwireguard-openbsd-7aaa7747d3ae78da25554427b4948ae5bc89190b.tar.xz
wireguard-openbsd-7aaa7747d3ae78da25554427b4948ae5bc89190b.zip
xmalloc called with the wrong sizeof in sentinel attribute setup
espie@ ok
-rw-r--r--gnu/egcs/gcc/c-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/egcs/gcc/c-common.c b/gnu/egcs/gcc/c-common.c
index bc8399e0c97..38bf4927916 100644
--- a/gnu/egcs/gcc/c-common.c
+++ b/gnu/egcs/gcc/c-common.c
@@ -1460,7 +1460,7 @@ new_sentinel_info (argument_num)
sentinel_info *info;
info = (sentinel_info *)
- xmalloc (sizeof (nonnull_info));
+ xmalloc (sizeof (sentinel_info));
info->next = NULL;
info->type = A_SENTINEL;
info->argument_num = argument_num;