Skip to content

Commit 0c92538

Browse files
committed
revert previously change to this
1 parent c488172 commit 0c92538

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/curl/multi.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,8 @@ PHP_FUNCTION(curl_multi_exec)
235235
}
236236
}
237237

238-
still_running = zval_get_long(z_still_running);
238+
convert_to_long(z_still_running);
239+
still_running = Z_LVAL_P(z_still_running);
239240
result = curl_multi_perform(mh->multi, &still_running);
240241
ZVAL_LONG(z_still_running, still_running);
241242

0 commit comments

Comments
 (0)