aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--awkgram.c7
-rw-r--r--awkgram.y7
3 files changed, 13 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 1f89c576..e73ebfbf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-02-03 Andrew J. Schorr <aschorr@telemetry-investments.com>
+
+ * awkgram.y (set_profile_text): Improve code clarity by using emalloc
+ to allocate the string instead of abusing estrdup.
+
2017-02-02 Arnold D. Robbins <arnold@skeeve.com>
* awkgram.y (set_profile_next): Allocate an extra byte at the
diff --git a/awkgram.c b/awkgram.c
index 70ff6daa..f4043923 100644
--- a/awkgram.c
+++ b/awkgram.c
@@ -8712,9 +8712,10 @@ static NODE *
set_profile_text(NODE *n, const char *str, size_t len)
{
if (do_pretty_print) {
- // extra byte in case we need to add minus sign in negate_num
- // note that estrdup adds another byte for the \0 at the end
- n->stptr = estrdup(str, len + 1);
+ // two extra bytes: one for NUL termination, and another in
+ // case we need to add a leading minus sign in add_sign_to_num
+ emalloc(n->stptr, char *, len + 2, "set_profile_text");
+ memcpy(n->stptr, str, len);
n->stptr[len] = '\0';
n->stlen = len;
// Set STRCUR and n->stfmt for use when profiling
diff --git a/awkgram.y b/awkgram.y
index 3ed2177a..af65187d 100644
--- a/awkgram.y
+++ b/awkgram.y
@@ -6292,9 +6292,10 @@ static NODE *
set_profile_text(NODE *n, const char *str, size_t len)
{
if (do_pretty_print) {
- // extra byte in case we need to add minus sign in negate_num
- // note that estrdup adds another byte for the \0 at the end
- n->stptr = estrdup(str, len + 1);
+ // two extra bytes: one for NUL termination, and another in
+ // case we need to add a leading minus sign in add_sign_to_num
+ emalloc(n->stptr, char *, len + 2, "set_profile_text");
+ memcpy(n->stptr, str, len);
n->stptr[len] = '\0';
n->stlen = len;
// Set STRCUR and n->stfmt for use when profiling