X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mjo-overlay.git;a=blobdiff_plain;f=dev-lang%2Fphp%2Ffiles%2Fall_strict_aliasing.patch;fp=dev-lang%2Fphp%2Ffiles%2Fall_strict_aliasing.patch;h=0000000000000000000000000000000000000000;hp=cfa609085e5e7b42d8b37e84c986febbf59a77d5;hb=c8f916f066225037a9e3c7d85f5529ac3dce359d;hpb=3159f43d1af846567d1b5c6bec4fbbfa0e62b1bf diff --git a/dev-lang/php/files/all_strict_aliasing.patch b/dev-lang/php/files/all_strict_aliasing.patch deleted file mode 100644 index cfa6090..0000000 --- a/dev-lang/php/files/all_strict_aliasing.patch +++ /dev/null @@ -1,14 +0,0 @@ -upstream bug: http://bugs.php.net/bug.php?id=46311 -The current patch follows a suggestion from Siarhei Siamashka -Adapted for php 5.5 ---- Zend/zend_execute.h.old 2013-01-01 13:49:04.587825704 +0100 -+++ Zend/zend_execute.h 2013-01-01 13:53:28.762958578 +0100 -@@ -293,7 +293,7 @@ - void **end = p - (int)(zend_uintptr_t)*p; - - while (p != end) { -- zval *q = *(zval **)(--p); -+ zval *q = (zval *)*(--p); - *p = NULL; - i_zval_ptr_dtor(q ZEND_FILE_LINE_CC); - }