mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-21 06:45:29 -06:00
fixed utf8 problem in firejail --tree
This commit is contained in:
parent
4a8a6eff0e
commit
86c3ad5ea5
1 changed files with 2 additions and 2 deletions
|
|
@ -178,8 +178,8 @@ char *pid_proc_cmdline(const pid_t pid) {
|
|||
for (i = 0; i < len; i++) {
|
||||
if (buffer[i] == '\0')
|
||||
buffer[i] = ' ';
|
||||
if (buffer[i] >= 0x80) // execv in progress!!!
|
||||
return NULL;
|
||||
// if (buffer[i] >= 0x80) // execv in progress!!!
|
||||
// return NULL;
|
||||
}
|
||||
|
||||
// return a malloc copy of the command line
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue