]> git.sesse.net Git - vlc/commitdiff
Fixed undefined behavior with integer overflow.
authorLaurent Aimar <fenrir@videolan.org>
Tue, 6 Jan 2009 21:16:07 +0000 (22:16 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Wed, 7 Jan 2009 19:29:16 +0000 (20:29 +0100)
Pointed out by Courmish.

src/playlist/fetcher.c

index 88a289c695b41c2a8ddb2ee7b8ed5ed085e76b3b..d592389dc08bcdc38d1f8e15e0e4787204e40258 100644 (file)
@@ -28,6 +28,7 @@
 #include <vlc_common.h>
 #include <vlc_playlist.h>
 #include <vlc_stream.h>
+#include <limits.h>
 
 #include "art.h"
 #include "fetcher.h"
@@ -269,7 +270,7 @@ static int DownloadArt( playlist_t *p_playlist, input_item_t *p_item )
     {
         int i_read = 65536;
 
-        if( i_data + i_read <= i_data ) /* Protect gainst overflow */
+        if( i_data >= INT_MAX - i_read )
             break;
 
         p_data = realloc( p_data, i_data + i_read );