Skip to content

Commit 3a2c9e6

Browse files
committed
fix build
sorry about that =\
1 parent 52e120f commit 3a2c9e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/curl/interface.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1751,7 +1751,7 @@ static php_curl *alloc_curl_handle()
17511751
memset(&ch->err, 0, sizeof(struct _php_curl_error));
17521752

17531753
zend_llist_init(&ch->to_free->str, sizeof(char *), (llist_dtor_func_t)curl_free_string, 0);
1754-
zend_llist_init(&ch->to_free->post, sizeof(struct *HttpPost), (llist_dtor_func_t)curl_free_post, 0);
1754+
zend_llist_init(&ch->to_free->post, sizeof(struct HttpPost *), (llist_dtor_func_t)curl_free_post, 0);
17551755

17561756
ch->to_free->slist = emalloc(sizeof(HashTable));
17571757
zend_hash_init(ch->to_free->slist, 4, NULL, curl_free_slist, 0);

0 commit comments

Comments
 (0)