mirror of
https://github.com/topjohnwu/selinux.git
synced 2024-12-04 01:20:52 +00:00
Check strdup() failure
This commit is contained in:
parent
cd1ef4d64e
commit
baf8a1de16
@ -27,6 +27,11 @@ int main(int argc, char **argv)
|
||||
switch (opt) {
|
||||
case 'l':
|
||||
level = strdup(optarg);
|
||||
if (!level) {
|
||||
fprintf(stderr, "memory allocation failure: %d(%s)\n",
|
||||
errno, strerror(errno));
|
||||
return 3;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
usage(argv[0], "invalid option", 1);
|
||||
|
Loading…
Reference in New Issue
Block a user