Use p_new instead of xmalloc()
[apps/madmutt.git] / dotlock.c
index abf92f0..8d562c8 100644 (file)
--- a/dotlock.c
+++ b/dotlock.c
@@ -85,7 +85,7 @@ int main (int argc, char **argv)
   /* determine the system's host name */
 
   uname (&utsname);
-  if (!(Hostname = strdup (utsname.nodename)))  /* __MEM_CHECKED__ */
+  if (!(Hostname = strdup(utsname.nodename)))
     return DL_EX_ERROR;
   if ((p = strchr (Hostname, '.')))
     *p = '\0';