Use obstack_blank_fast to shrink obstacks

obstack_blank isn't the correct macro to call for shrinking obstacks
since it does size checking.

	* charset.c (convert_between_encodings): Shrink obstack using
	obstack_blank_fast.
	* minsyms.c (install_minimal_symbols): Likewise.
This commit is contained in:
Alan Modra
2014-11-04 19:25:34 +10:30
parent 336649dc25
commit ee11262d06
3 changed files with 8 additions and 2 deletions

View File

@ -506,7 +506,7 @@ convert_between_encodings (const char *from, const char *to,
/* Now make sure that the object on the obstack only includes
bytes we have converted. */
obstack_blank (output, - (int) outleft);
obstack_blank_fast (output, -outleft);
if (r == (size_t) -1)
{