1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-12 11:12:18 +00:00

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

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);