Add todo about util_vasprintf (too lazy to fix right now)

This commit is contained in:
Dale Weiler 2012-12-31 18:34:13 +00:00
parent 1182ab55c5
commit f4c3080824

2
util.c
View file

@ -576,6 +576,8 @@ void util_htdel(hash_table_t *ht) {
/*
* Portable implementation of vasprintf/asprintf. Assumes vsnprintf
* exists, otherwise compiler error.
*
* TODO: fix for MSVC ....
*/
int util_vasprintf(char **ret, const char *fmt, va_list args) {
int read;