Fix a bunch of warnings / undefined pointers
By the way, using asprintf(&ptr)/free(ptr) to determine the length of a string is really lame, when you can do the same with snprintf(NULL, 0);
Showing
Please register or sign in to comment
By the way, using asprintf(&ptr)/free(ptr) to determine the length of a string is really lame, when you can do the same with snprintf(NULL, 0);