lib/DtTerm: Fix copy&paste error

This avoids using an uninitialized variable by using the initialized
variable that is obviously the right one in the context.
This commit is contained in:
Patrick Georgi 2024-01-03 22:50:15 +01:00 committed by Jon Trulson
parent e2aa3e665b
commit a5b5eb0f80
1 changed files with 2 additions and 2 deletions

View File

@ -2196,8 +2196,8 @@ _DtTermParseSunMisc /* Misc sun esc seqs */
case 21:
XtVaGetValues(sw,XmNtitle, &title, NULL);
fmt = "\033]l%s\033\\";
if (strlen(icon) + strlen(fmt) + 1 >= sizeof(buf))
s = XtMalloc(strlen(icon) + strlen(fmt) + 1);
if (strlen(title) + strlen(fmt) + 1 >= sizeof(buf))
s = XtMalloc(strlen(title) + strlen(fmt) + 1);
else
s = buf;
sprintf(s, "%s", fmt);