]> git.sesse.net Git - vlc/commitdiff
Diminish buffer size
authorRémi Denis-Courmont <rem@videolan.org>
Mon, 11 Jul 2005 16:37:40 +0000 (16:37 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Mon, 11 Jul 2005 16:37:40 +0000 (16:37 +0000)
(still big enough for a pure 256-bits architecture...)

modules/control/http.c

index c2dc5b96993ff164c9241272f7cf06ae873f39d1..a923d1140f1a22637f897eceb381fe0787f1e1e4 100644 (file)
@@ -936,7 +936,7 @@ static mvar_t *mvar_IntegerSetNew( char *name, char *arg )
             {
                 for( i = i_start; ; i += i_step )
                 {
-                    char   value[512];
+                    char   value[79];
 
                     if( ( i_step > 0 && i > i_stop ) ||
                         ( i_step < 0 && i < i_stop ) )