Browse Source

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.
Patrick Georgi 3 months ago
parent
commit
a5b5eb0f80
1 changed files with 2 additions and 2 deletions
  1. 2 2
      cde/lib/DtTerm/Term/TermParse.c

+ 2 - 2
cde/lib/DtTerm/Term/TermParse.c

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