diff options
| author | 2003-04-09 16:38:29 +0000 | |
|---|---|---|
| committer | 2003-04-09 16:38:29 +0000 | |
| commit | 7aaa7747d3ae78da25554427b4948ae5bc89190b (patch) | |
| tree | 6dbe017f54b491fa4cb732ac1535402f52a9642c | |
| parent | Less noise for missing crl dir, demoted to debug message. (diff) | |
| download | wireguard-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.c | 2 |
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; |
