X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffatal-signal.c;h=3862b797042a40cbbe3c3a53bf9696424b4373a3;hb=dd6ceef65e424d30db8706273f88c20b015012ce;hp=f85b60f41865a96c00c89a4dcdc4f85731c3ad1b;hpb=fa9f85a436cb8239695046be4feb68211fe71af1;p=gnulib.git diff --git a/lib/fatal-signal.c b/lib/fatal-signal.c index f85b60f41..3862b7970 100644 --- a/lib/fatal-signal.c +++ b/lib/fatal-signal.c @@ -1,5 +1,5 @@ /* Emergency actions in case of a fatal signal. - Copyright (C) 2003-2004, 2006 Free Software Foundation, Inc. + Copyright (C) 2003-2004, 2006-2007 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software; you can redistribute it and/or modify @@ -27,7 +27,6 @@ #include #include -#include "sigprocmask.h" #include "xalloc.h" #define SIZEOF(a) (sizeof(a) / sizeof(a[0])) @@ -206,7 +205,7 @@ at_fatal_signal (action_t action) size_t old_actions_allocated = actions_allocated; size_t new_actions_allocated = 2 * actions_allocated; actions_entry_t *new_actions = - xmalloc (new_actions_allocated * sizeof (actions_entry_t)); + XNMALLOC (new_actions_allocated, actions_entry_t); size_t k; /* Don't use memcpy() here, because memcpy takes non-volatile arguments