summaryrefslogtreecommitdiff
path: root/news/newsx/files/patch-bf
blob: d7956200e57228e24f9ba369b392da19c9dbd7b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- src/path.c.orig	Wed Mar 24 04:53:00 1999
+++ src/path.c	Sun Feb 18 14:56:26 2001
@@ -6,6 +6,9 @@
  *  the GNU General Public License applies
  *
  *  $Log: path.c,v $
+ *  Revision x.xx  2001/02/18
+ *  Use xmalloc and xrealloc from libinn.h (<thierry@thomas.as>)
+ *
  *  Revision 1.3  1999/03/24 03:53:00  src
  *  Implemented "newsx" as magic exclude pattern
  *
@@ -40,7 +43,8 @@
 
     if (PATH_DEBUG) fprintf(stderr,"Add exclusion: %s\n",path);
 
-    e = xmalloc(sizeof(struct ex_s));
+/* xmalloc from libinn (<thierry@thomas.as>) */
+    e = xmalloc(sizeof(struct ex_s),"path.c",47);
     e->e_next = exclusion;
     e->e_name = xstrcpy(path);
     exclusion = e;