mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 14:05:45 +02:00
Incomplete status2d fragments protection
This commit is contained in:
parent
647c5935b3
commit
4b22fdc0c3
@ -87,8 +87,8 @@ drawstatusbar(BarArg *a, char* stext)
|
||||
char *text;
|
||||
char *p;
|
||||
Clr oldbg, oldfg;
|
||||
len = strlen(stext) + 1;
|
||||
if (!(text = (char*) malloc(sizeof(char)*len)))
|
||||
len = strlen(stext);
|
||||
if (!(text = (char*) malloc(sizeof(char)*(len + 1))))
|
||||
die("malloc");
|
||||
p = text;
|
||||
#if BAR_STATUSCMD_PATCH
|
||||
@ -203,6 +203,7 @@ drawstatusbar(BarArg *a, char* stext)
|
||||
}
|
||||
|
||||
text = text + i + 1;
|
||||
len -= i + 1;
|
||||
i=-1;
|
||||
isCode = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user