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.
+2014-11-05  Alan Modra  <amodra@gmail.com>
+
+       * charset.c (convert_between_encodings): Shrink obstack using
+       obstack_blank_fast.
+       * minsyms.c (install_minimal_symbols): Likewise.
+
 2014-11-04  Simon Marchi  <simon.marchi@ericsson.com>
 
        * tui/tui.c (tui_enable): Pass stdout and stdin to newterm.
 
 
       /* 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)
        {
 
 
       mcount = compact_minimal_symbols (msymbols, mcount, objfile);
 
-      obstack_blank (&objfile->per_bfd->storage_obstack,
+      obstack_blank_fast (&objfile->per_bfd->storage_obstack,
               (mcount + 1 - alloc_count) * sizeof (struct minimal_symbol));
       msymbols = (struct minimal_symbol *)
        obstack_finish (&objfile->per_bfd->storage_obstack);