]> git.marmaro.de Git - mmh/commitdiff
fix Debian bug #202667: crash when a message's filename overflows an int
authorOliver Kiddle <okiddle@yahoo.co.uk>
Wed, 23 Feb 2005 14:07:52 +0000 (14:07 +0000)
committerOliver Kiddle <okiddle@yahoo.co.uk>
Wed, 23 Feb 2005 14:07:52 +0000 (14:07 +0000)
when converted

ChangeLog
sbr/folder_read.c

index a42dd837400dbddd9b4fb9341ea1ebfecdcc90cd..9a6c9745363f176e568df1e81a00d5dabed4e5e3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-02-23  Oliver Kiddle  <okiddle@yahoo.co.uk>
 
+       * sbr/folder_read.c fix Debian bug #202667: crash when a
+       message's filename overflows an int when converted
+
        * Updated config.guess and config.sub to the most recent
        versions (from automake 1.9.5)
 
index b5b3f9d58792eb8c769d135554d3f976bce38bdb..2e67917257f57944b649045848b76a4a33f32a11 100644 (file)
@@ -70,7 +70,7 @@ folder_read (char *name)
        adios (NULL, "unable to allocate storage");
 
     while ((dp = readdir (dd))) {
-       if ((msgnum = m_atoi (dp->d_name))) {
+       if ((msgnum = m_atoi (dp->d_name)) && msgnum > 0) {
            /*
             * Check if we need to allocate more
             * temporary elements for message names.