iliaa           Wed Dec 11 02:37:31 2002 EDT

  Modified files:              
    /php4/ext/exif      exif.c 
  Log:
  decode variable is only used when mbstring is avaliable.
  
  
Index: php4/ext/exif/exif.c
diff -u php4/ext/exif/exif.c:1.126 php4/ext/exif/exif.c:1.127
--- php4/ext/exif/exif.c:1.126  Tue Dec 10 13:00:47 2002
+++ php4/ext/exif/exif.c        Wed Dec 11 02:37:30 2002
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: exif.c,v 1.126 2002/12/10 18:00:47 iliaa Exp $ */
+/* $Id: exif.c,v 1.127 2002/12/11 07:37:30 iliaa Exp $ */
 
 /*  ToDos
  *
@@ -89,7 +89,7 @@
 };
 /* }}} */
 
-#define EXIF_VERSION "1.4 $Id: exif.c,v 1.126 2002/12/10 18:00:47 iliaa Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.127 2002/12/11 07:37:30 iliaa Exp $"
 
 /* {{{ PHP_MINFO_FUNCTION
  */
@@ -2574,9 +2574,9 @@
 static int exif_process_user_comment(image_info_type *ImageInfo, char **pszInfoPtr, 
char **pszEncoding, char *szValuePtr, int ByteCount TSRMLS_DC)
 {
        int   a;
-       char  *decode;
 
 #ifdef HAVE_MBSTRING
+       char  *decode;
        size_t len;;
 #endif
 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to