X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Ffolder_realloc.c;h=2418abd1e01dfb6b5af4b63c88ba9c08b6a9bf86;hp=1d2b140a1e3597516c8bbad67c367b06c288f06b;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=337338b404931f06f0db2119c9e145e8ca5a9860 diff --git a/sbr/folder_realloc.c b/sbr/folder_realloc.c index 1d2b140..2418abd 100644 --- a/sbr/folder_realloc.c +++ b/sbr/folder_realloc.c @@ -1,21 +1,21 @@ /* - * folder_realloc.c -- realloc a folder/msgs structure - * - * 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. - */ +** folder_realloc.c -- realloc a folder/msgs structure +** +** 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. +*/ #include #include /* - * Reallocate some of the space in the folder - * structure (currently just message status array). - * - * Return pointer to new folder structure. - * If error, return NULL. - */ +** Reallocate some of the space in the folder +** structure (currently just message status array). +** +** Return pointer to new folder structure. +** If error, return NULL. +*/ struct msgs * folder_realloc (struct msgs *mp, int lo, int hi) @@ -40,16 +40,16 @@ folder_realloc (struct msgs *mp, int lo, int hi) if (lo == mp->lowoff) { /* - * We are just extending (or shrinking) the end of message - * status array. So we don't have to move anything and can - * just realloc the message status array. - */ + ** We are just extending (or shrinking) the end of message + ** status array. So we don't have to move anything and can + ** just realloc the message status array. + */ mp->msgstats = mh_xrealloc (mp->msgstats, MSGSTATSIZE(mp, lo, hi)); } else { /* - * We are changing the offset of the message status - * array. So we will need to shift everything. - */ + ** We are changing the offset of the message status + ** array. So we will need to shift everything. + */ seqset_t *tmpstats; /* first allocate the new message status space */ @@ -68,9 +68,9 @@ folder_realloc (struct msgs *mp, int lo, int hi) mp->hghoff = hi; /* - * Clear all the flags for entries outside - * the current message range for this folder. - */ + ** Clear all the flags for entries outside + ** the current message range for this folder. + */ if (mp->nummsg > 0) { for (msgnum = mp->lowoff; msgnum < mp->lowmsg; msgnum++) clear_msg_flags (mp, msgnum);