* Fixed bug ##16577 typo in http_request_object.c (HttpRequest::addBody)
authorMichael Wallner <mike@php.net>
Fri, 12 Jun 2009 09:09:59 +0000 (09:09 +0000)
committerMichael Wallner <mike@php.net>
Fri, 12 Jun 2009 09:09:59 +0000 (09:09 +0000)
http_request_object.c
package2.xml

index ae0482493faf883dfe86d9909366c6c120ddb41e..460ba243a085e94d2e3e1e7b6d72182528804bed 100644 (file)
@@ -1310,14 +1310,14 @@ PHP_METHOD(HttpRequest, addBody)
        }
        
        if (data_len) {
-               zval *data = zend_read_property(THIS_CE, getThis(), ZEND_STRS("rrequestBody")-1, 0 TSRMLS_CC);
+               zval *data = zend_read_property(THIS_CE, getThis(), ZEND_STRS("requestBody")-1, 0 TSRMLS_CC);
                
                if (Z_STRLEN_P(data)) {
                        Z_STRVAL_P(data) = erealloc(Z_STRVAL_P(data), (Z_STRLEN_P(data) += data_len) + 1);
                        Z_STRVAL_P(data)[Z_STRLEN_P(data)] = '\0';
                        memcpy(Z_STRVAL_P(data) + Z_STRLEN_P(data) - data_len, raw_data, data_len);
                } else {
-                       zend_update_property_stringl(THIS_CE, getThis(), ZEND_STRS("putData")-1, raw_data, data_len TSRMLS_CC);
+                       zend_update_property_stringl(THIS_CE, getThis(), ZEND_STRS("requestBody")-1, raw_data, data_len TSRMLS_CC);
                }
        }
        
index d23aa90af5edc54589ab989a9319d311d5dcda4b..060f638ae4e5b77600aa92fa81b473fc59dd3825 100644 (file)
@@ -28,9 +28,9 @@ support. Parallel requests are available for PHP 5 and greater.
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
- <date>2009-02-12</date>
+ <date>2009-03-17</date>
  <version>
-  <release>1.6.4-dev</release>
+  <release>1.6.4dev</release>
   <api>1.6.0</api>
  </version>
  <stability>
@@ -39,12 +39,10 @@ support. Parallel requests are available for PHP 5 and greater.
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-* Fixed bug #15495 (HttpMessage::setHttpVersion segfault)
-* Fixed bug #15497 (HttpInflateStream::finish segfault)
-* Fixed bug #15499 (HttpRequest::addHeaders segfault)
-* Fixed bug #15509 (HttpMessage::rewind memory leaks)
-* Fixed bug #15800 (Double free when zval is separated in convert_to_*)
-* Fixed bug #15813 (Requests not removed from multi stack when fatal errors occur with fcgi)
+* Fixed PHP4 build
+* Fixed HttpMessage::toMessageTypeObject() to nonor non-string arguments
+* Fixed memory leaks and unterminated string issues with HttpMessage
+* Fixed bug ##16577 typo in http_request_object.c (HttpRequest::addBody)
 ]]></notes>
  <contents>
   <dir name="/">