diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-01-28 10:12:58 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-01-28 10:13:02 -0800 |
commit | ffbfe65382c8f267139b87630976700c0e80b435 (patch) | |
tree | 6a2312f71266c006efb557a0817ca5c33e4d0aaf /Mailbox.c | |
parent | 7862d8d80e8612b3e7285ce2fe3ec901fda05fe6 (diff) |
Use XtAsprintf instead of manual mallocing and copying of strings
Raises minimum libXt requirement to 1.1.0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'Mailbox.c')
-rw-r--r-- | Mailbox.c | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -545,14 +545,10 @@ static void GetMailFile (MailboxWidget w) } #endif if ((mailpath = getenv("MAIL"))) { - w->mailbox.filename = XtMalloc (strlen (mailpath) + 1); - strcpy (w->mailbox.filename, mailpath); + XtAsprintf(&w->mailbox.filename, "%s", mailpath); } else { - w->mailbox.filename = XtMalloc (strlen (MAILBOX_DIRECTORY) + 1 - + strlen (username) + 1); - strcpy (w->mailbox.filename, MAILBOX_DIRECTORY); - strcat (w->mailbox.filename, "/"); - strcat (w->mailbox.filename, username); + XtAsprintf(&w->mailbox.filename, "%s/%s", + MAILBOX_DIRECTORY, username); } return; } |