Similar to the commit
7b2d8d61 on July 11.
* x-vala.c (phase3_get): Add missing memory allocation for empty
string literal.
+2014-07-14 Daiki Ueno <ueno@gnu.org>
+
+ vala: Fix empty string literal handling
+ Similar to the commit 7b2d8d61 on July 11.
+ * x-vala.c (phase3_get): Add missing memory allocation for empty
+ string literal.
+
2014-07-14 Daiki Ueno <ueno@gnu.org>
build: Fix race in post-install removal of *.a
break;
}
}
+ if (bufpos >= bufmax)
+ {
+ bufmax = 2 * bufmax + 10;
+ buffer = xrealloc (buffer, bufmax);
+ }
buffer[bufpos] = 0;
tp->type = last_token_type = template
? token_type_string_template : token_type_string_literal;