fixed silly pointer error

This commit is contained in:
Kyle Maxwell 2009-01-18 22:52:27 -08:00
parent 719eeac05e
commit fd0d84b4de
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ static parsedDexPtr parse_error(char* format, ...) {
ptr->xml = NULL;
va_list args;
va_start(args, format);
vasprintf(ptr->error, format, args);
vasprintf(&ptr->error, format, args);
va_end(args);
return ptr;
}