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:
parent
336649dc25
commit
ee11262d06
@ -1,3 +1,9 @@
|
||||
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.
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -1270,7 +1270,7 @@ install_minimal_symbols (struct objfile *objfile)
|
||||
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user