Many of the curl api's take const buffers/strings but the .d wrapper leaves out the const'ness. For example:
curl.h:
CURL_EXTERN char *curl_easy_unescape(CURL *handle,
const char *string,
int length,
int *outlength);
curl.d:
char * curl_easy_unescape(CURL *handle, char *string, int length, int *outlength);
Comment #1 by github-bugzilla — 2017-11-04T16:41:45Z