Commit:    cec1786911eea3d515c044a407e22e9b162d7080
Author:    Xinchen Hui <larue...@php.net>         Mon, 27 Aug 2012 10:23:23 
+0800
Parents:   dacd11ea8989a442032b9fdbece581cf9d299904
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=cec1786911eea3d515c044a407e22e9b162d7080

Log:
Fixed bug #62938 (zend_do_bind_catch() used without declaration)

Bugs:
https://bugs.php.net/62938

Changed paths:
  M  Zend/zend_compile.h


Diff:
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index 15c2ab7..3a6f942 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -501,6 +501,7 @@ void zend_do_fetch_lexical_variable(znode *varname, 
zend_bool is_ref TSRMLS_DC);
 
 void zend_do_try(znode *try_token TSRMLS_DC);
 void zend_do_begin_catch(znode *try_token, znode *catch_class, znode 
*catch_var, znode *first_catch TSRMLS_DC);
+void zend_do_bind_catch(znode *try_token, znode *catch_token TSRMLS_DC);
 void zend_do_end_catch(znode *catch_token TSRMLS_DC);
 void zend_do_finally(znode *finally_token TSRMLS_DC);
 void zend_do_end_finally(znode *try_token, znode* catch_token, znode 
*finally_token TSRMLS_DC);


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

Reply via email to