]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 212627 via svnmerge from
authorTilghman Lesher <tilghman@meg.abyt.es>
Mon, 17 Aug 2009 19:58:52 +0000 (19:58 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Mon, 17 Aug 2009 19:58:52 +0000 (19:58 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

........
  r212627 | tilghman | 2009-08-17 14:57:42 -0500 (Mon, 17 Aug 2009) | 4 lines

  Check the return value of opendir(3), or we may crash.
  (closes issue #15720)
   Reported by: tobias_e
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@212628 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_voicemail.c

index 3f7f1c2207e561aa0954cb13d72d658cce466375..c72f5311bf906af2e5ee352ddd575a016ac4e100 100644 (file)
@@ -3031,7 +3031,10 @@ static int last_message_index(struct ast_vm_user *vmu, char *dir)
        * doing a stat repeatedly on a predicted sequence.  I suspect this
        * is partially due to stat(2) internally doing a readdir(2) itself to
        * find each file. */
-       msgdir = opendir(dir);
+       if (!(msgdir = opendir(dir))) {
+               return -1;
+       }
+
        while ((msgdirent = readdir(msgdir))) {
                if (sscanf(msgdirent->d_name, "msg%30d", &msgdirint) == 1 && msgdirint < MAXMSGLIMIT)
                        map[msgdirint] = 1;