]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 261095 via svnmerge from
authorTilghman Lesher <tilghman@meg.abyt.es>
Tue, 4 May 2010 23:55:42 +0000 (23:55 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Tue, 4 May 2010 23:55:42 +0000 (23:55 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

................
  r261095 | tilghman | 2010-05-04 18:51:52 -0500 (Tue, 04 May 2010) | 18 lines

  Merged revisions 261093-261094 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r261093 | tilghman | 2010-05-04 18:36:53 -0500 (Tue, 04 May 2010) | 7 lines

    Protect against overflow, when calculating how long to wait for a frame.

    (closes issue #17128)
     Reported by: under
     Patches:
           d.diff uploaded by under (license 914)
  ........
    r261094 | tilghman | 2010-05-04 18:47:08 -0500 (Tue, 04 May 2010) | 2 lines

    Add a tiny corner case to the previous commit
  ........
................

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

main/channel.c

index 59b547e7542f37e4a478da507976bfb118b49ce1..a8d9be8ccfea0a8ba07f3121d918ee3480962c81 100644 (file)
@@ -2078,10 +2078,15 @@ struct ast_channel *ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds,
        }
        /* Wait full interval */
        rms = *ms;
-       if (whentohangup) {
+       /* INT_MAX, not LONG_MAX, because it matters on 64-bit */
+       if (whentohangup && whentohangup < INT_MAX / 1000) {
                rms = whentohangup * 1000;              /* timeout in milliseconds */
-               if (*ms >= 0 && *ms < rms)              /* original *ms still smaller */
+               if (*ms >= 0 && *ms < rms) {            /* original *ms still smaller */
                        rms =  *ms;
+               }
+       } else if (whentohangup && rms < 0) {
+               /* Tiny corner case... call would need to last >24 days */
+               rms = INT_MAX;
        }
        /*
         * Build the pollfd array, putting the channels' fds first,