*** empty log message ***

This commit is contained in:
Søren Sandmann Pedersen
2004-11-21 23:33:56 +00:00
parent a0100c8865
commit 7f02ecd503
3 changed files with 11 additions and 3 deletions

View File

@ -130,8 +130,12 @@ create_process (const char *cmdline, int pid)
Process *p;
p = g_new (Process, 1);
p->cmdline = g_strdup_printf ("[%s]", cmdline);
if (*cmdline != '\0')
p->cmdline = g_strdup_printf ("[%s]", cmdline);
else
p->cmdline = g_strdup_printf ("[pid %d]", pid);
p->bad_pages = NULL;
p->maps = NULL;
p->pid = pid;