In commit
5d10a2041eb ("gdb: add string_file::release method") this was added:
...
+ std::string string_val = string.release ();
...
without updating subsequent uses of string.size (), which returns 0 after the
string.release () call.
Fix this by:
- using string_val.size () instead of string.size (), and
- adding an assert that would have caught this regression.
Tested on x86_64-linux.
Reviewed-By: Simon Marchi <simon.marchi@efficios.com>
PR tui/30389
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30389
std::string string_val = string.release ();
- if (string.size () < status_size)
- string_val.append (status_size - string.size (), ' ');
- else if (string.size () > status_size)
- string_val.erase (status_size, string.size ());
+ size_t len = string_val.size ();
+ if (len < status_size)
+ string_val.append (status_size - len, ' ');
+ else if (len > status_size)
+ string_val.erase (status_size, len);
+
+ gdb_assert (string_val.size () == status_size);
return string_val;
}