diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | field.c | 6 |
2 files changed, 7 insertions, 5 deletions
@@ -1,5 +1,11 @@ 2016-07-03 Andrew J. Schorr <aschorr@telemetry-investments.com> + * field.c (rebuild_record): Revert warning message regarding flags, + since I'm not yet totally confident that it is invalid to have FIELD + and MALLOC set at the same time. + +2016-07-03 Andrew J. Schorr <aschorr@telemetry-investments.com> + * field.c (rebuild_record): Do not turn off the STRING flag when copying a FIELD node, and issue a warning if MALLOC is enabled. @@ -216,11 +216,7 @@ rebuild_record() } } else { *n = *r; - if (n->flags & MALLOC) { - /* unexpected, since FIELD is on! */ - warning(_("invalid flags combination `%s' detected while rebuilding record; please file a bug report."), flags2str(n->flags)); - n->flags &= ~MALLOC; - } + n->flags &= ~MALLOC; } n->stptr = cops; |