| i want add callback postprocess-html and modify html content,
but went to a trouble.
just like this.
---
int httrack_wrapper_postprocesshtml(char** html,int* len,char*
url_adresse,char* url_fichier) {
char *p = _strdup(*html);
*html = p;
}
--
the code received singal SIGTRAP.
the same with malloc()
someone can use it? | |