From 806bc4e164da39fc54ea3680380e978e976fe24a Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 14 Sep 2006 10:32:45 +0000 Subject: [PATCH] Reinamed variables to avoid name conflicts --- Zend/zend.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Zend/zend.h b/Zend/zend.h index 0ed6da1cbf..a1a1c37266 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -448,17 +448,17 @@ END_EXTERN_C() #define zend_try \ { \ - jmp_buf *orig_bailout = EG(bailout); \ - jmp_buf bailout; \ + jmp_buf *__orig_bailout = EG(bailout); \ + jmp_buf __bailout; \ \ - EG(bailout) = &bailout; \ - if (setjmp(bailout)==0) { + EG(bailout) = &__bailout; \ + if (setjmp(__bailout)==0) { #define zend_catch \ } else { \ - EG(bailout) = orig_bailout; + EG(bailout) = __orig_bailout; #define zend_end_try() \ } \ - EG(bailout) = orig_bailout; \ + EG(bailout) = __orig_bailout; \ } #define zend_first_try EG(bailout)=NULL; zend_try -- 2.50.1