X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=http_request_object.c;h=8ea4da69a989ee15427a2f24e4d4ae8317d9d0ac;hb=25dc615c59f0a2c67978278ad5ff3b484c29fd5d;hp=76ba2dd1d2eefc300562f16796701f3c7c9e1ae9;hpb=cbbaaf2cc3725f6c74198925ae6ccc346392909e;p=m6w6%2Fext-http diff --git a/http_request_object.c b/http_request_object.c index 76ba2dd..8ea4da6 100644 --- a/http_request_object.c +++ b/http_request_object.c @@ -1885,7 +1885,7 @@ PHP_METHOD(HttpRequest, getRequestMessage) SET_EH_THROW_HTTP(); if (msg = http_message_parse(PHPSTR_VAL(&obj->request), PHPSTR_LEN(&obj->request))) { - RETVAL_OBJVAL(http_message_object_new_ex(http_message_object_ce, msg, NULL)); + ZVAL_OBJVAL(return_value, http_message_object_new_ex(http_message_object_ce, msg, NULL)); } SET_EH_NORMAL(); } @@ -1917,7 +1917,7 @@ PHP_METHOD(HttpRequest, getHistory) SET_EH_THROW_HTTP(); if (msg = http_message_parse(PHPSTR_VAL(&obj->history), PHPSTR_LEN(&obj->history))) { - RETVAL_OBJVAL(http_message_object_new_ex(http_message_object_ce, msg, NULL)); + ZVAL_OBJVAL(return_value, http_message_object_new_ex(http_message_object_ce, msg, NULL)); } SET_EH_NORMAL(); }