do_set_command manually updates a string, only to copy it to a
std::string and free the working copy. This patch changes this code
to use std::string for everything, simplifying the code and removing a
copy.
Reviewed-by: John Baldwin <jhb@FreeBSD.org>
{
case var_string:
{
- char *newobj;
+ std::string newobj;
const char *p;
- char *q;
int ch;
- newobj = (char *) xmalloc (strlen (arg) + 2);
+ newobj.reserve (strlen (arg));
p = arg;
- q = newobj;
while ((ch = *p++) != '\000')
{
if (ch == '\\')
if (ch == 0)
break; /* C loses */
else if (ch > 0)
- *q++ = ch;
+ newobj.push_back (ch);
}
else
- *q++ = ch;
+ newobj.push_back (ch);
}
-#if 0
- if (*(p - 1) != '\\')
- *q++ = ' ';
-#endif
- *q++ = '\0';
- newobj = (char *) xrealloc (newobj, q - newobj);
-
- option_changed = c->var->set<std::string> (std::string (newobj));
- xfree (newobj);
+ newobj.shrink_to_fit ();
+
+ option_changed = c->var->set<std::string> (std::move (newobj));
}
break;
case var_string_noescape: