aboutsummaryrefslogtreecommitdiff
path: root/gas/sb.h
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2012-06-09 13:22:00 +0000
committerH.J. Lu <hjl.tools@gmail.com>2012-06-09 13:22:00 +0000
commitd2ae702c466d7d01de50427a048df0cfd5b90e24 (patch)
treeb9db44b3aa2e47d6ae8bb075d4b3b691e1fee4b1 /gas/sb.h
parent5197bfb548f1f12137e65c843ae1a3c1899ea17e (diff)
downloadgdb-d2ae702c466d7d01de50427a048df0cfd5b90e24.zip
gdb-d2ae702c466d7d01de50427a048df0cfd5b90e24.tar.gz
gdb-d2ae702c466d7d01de50427a048df0cfd5b90e24.tar.bz2
Allocate sufficient space for string buffer
* input-scrub.c (input_scrub_include_sb): Use sb_build to allocate sufficient space for from_sb. Use sb_terminate to terminate string. * read.c (read_a_source_file): Use sb_build to allocate sufficient space and replace sb_add_string with sb_add_buffer. (s_macro): Likewise. (input_scrub_insert_line): Likewise. (s_irp): Use sb_build to allocate sufficient space. (do_repeat): Use sb_build to allocate sufficient space for many. * sb.c (sb_build): Remove static. * sb.h (sb_build): New prototype.
Diffstat (limited to 'gas/sb.h')
-rw-r--r--gas/sb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gas/sb.h b/gas/sb.h
index cc11ef6..ea010ee 100644
--- a/gas/sb.h
+++ b/gas/sb.h
@@ -53,6 +53,7 @@ typedef struct sb
sb;
extern void sb_new (sb *);
+extern void sb_build (sb *, size_t);
extern void sb_kill (sb *);
extern void sb_add_sb (sb *, sb *);
extern void sb_scrub_and_add_sb (sb *, sb *);