Skip to content

Commit ce2e107

Browse files
committed
Don't allocate php_curl_handlers separately
Always allocated together with php_curl... no point in that.
1 parent cc11130 commit ce2e107

File tree

3 files changed

+216
-220
lines changed

3 files changed

+216
-220
lines changed

ext/curl/curl_private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ struct _php_curl_free {
9797

9898
typedef struct {
9999
CURL *cp;
100-
php_curl_handlers *handlers;
100+
php_curl_handlers handlers;
101101
struct _php_curl_free *to_free;
102102
struct _php_curl_send_headers header;
103103
struct _php_curl_error err;

0 commit comments

Comments
 (0)