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:
parent
e2aa3e665b
commit
a5b5eb0f80
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue