]> granicus.if.org Git - php/commitdiff
Nuke unused vars
authorMarcus Boerger <helly@php.net>
Sun, 10 Aug 2003 20:39:19 +0000 (20:39 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 10 Aug 2003 20:39:19 +0000 (20:39 +0000)
ext/ming/ming.c

index f0a984d4d4c16c89b20ec1e77a9141b54e014bb3..d52b8a9ff935b42c236fbb99c74de14b35b0b359 100644 (file)
@@ -1440,8 +1440,6 @@ static void phpByteOutputMethod(byte b, void *data)
 
 PHP_FUNCTION(swfmovie_output)
 {
-       zval **zlimit = NULL;
-       int limit = -1;
        SWFMovie movie = getMovie(getThis() TSRMLS_CC);
 
 #ifdef HAVE_MING_ZLIB
@@ -1478,8 +1476,6 @@ static void phpStreamOutputMethod(byte b, void * data)
 PHP_FUNCTION(swfmovie_saveToFile)
 {
        zval **x;
-       zval **zlimit = NULL;
-       int limit = -1;
        SWFMovie movie = getMovie(getThis() TSRMLS_CC);
        php_stream *what;
 
@@ -1517,8 +1513,7 @@ PHP_FUNCTION(swfmovie_saveToFile)
   Saves the movie. 'where' can be stream and the movie will be saved there otherwise it is treated as string and written in file with that name */
 PHP_FUNCTION(swfmovie_save)
 {
-       zval **x, **zlimit = NULL;
-       int limit = -1;
+       zval **x;
        long retval;
        php_stream *stream;