X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Ffolder_read.c;h=d59e7310da81517c3ec9ca224ed91d170927e244;hp=8e3a3ffa7e6648cbc3c917a2fc5aef867e675214;hb=6c40d481d661d532dd527eaf34cebb6d3f8ed086;hpb=81a21a9a97d8633f6d6231e31fdb6e328d0d3ff2 diff --git a/sbr/folder_read.c b/sbr/folder_read.c index 8e3a3ff..d59e731 100644 --- a/sbr/folder_read.c +++ b/sbr/folder_read.c @@ -2,8 +2,6 @@ /* * folder_read.c -- initialize folder structure and read folder * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -59,7 +57,7 @@ folder_read (char *name) if (access (name, W_OK) == -1) set_readonly (mp); - prefix_len = strlen(BACKUP_PREFIX); + prefix_len = strlen(backup_prefix); /* * Allocate a temporary place to record the @@ -76,10 +74,7 @@ folder_read (char *name) */ if (mp->nummsg >= len) { len += NUMMSGS; - if (!(mi = (int *) realloc (mi, - (size_t) (len * sizeof(*mi))))) { - adios (NULL, "unable to allocate storage"); - } + mi = (int *) mh_xrealloc (mi, (size_t) (len * sizeof(*mi))); } /* Check if this is the first message we've seen */ @@ -111,7 +106,7 @@ folder_read (char *name) default: /* skip any files beginning with backup prefix */ - if (!strncmp (dp->d_name, BACKUP_PREFIX, prefix_len)) + if (!strncmp (dp->d_name, backup_prefix, prefix_len)) continue; /* skip the LINK file */