- fixed a gotcha in http_chunked_decode (-size_t is always > 0)
[m6w6/ext-http] / missing.c
index 9d9b9412cf8ad31bd54251e10c9b969bb324b454..584a75c4c137492eff307429a0770edc562217cb 100644 (file)
--- a/missing.c
+++ b/missing.c
@@ -43,7 +43,8 @@ int zend_declare_property_bool(zend_class_entry *ce, char *name, int name_length
 }
 
 void zend_update_property_bool(zend_class_entry *scope, zval *object, char *name, int name_length, long value TSRMLS_DC)
-{      zval *tmp = ecalloc(1, sizeof(zval));
+{
+       zval *tmp = ecalloc(1, sizeof(zval));
        ZVAL_BOOL(tmp, value);
        zend_update_property(scope, object, name, name_length, tmp TSRMLS_CC);
 }