this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix vchroot_unexpand() returning '' instead of '/'

+3
+3
src/kernel/emulation/linux/vchroot_userspace.c
··· 468 468 { 469 469 int bytes = strlen(args->path + prefix_path_len) + 1; 470 470 memmove(args->path, args->path + prefix_path_len, bytes); 471 + 472 + if (args->path[0] == '\0') 473 + strcpy(args->path, "/"); 471 474 } 472 475 else 473 476 {