syslogd: fix shmat error check
This commit is contained in:
parent
bcd5fc12ec
commit
4e9ca75281
@ -218,7 +218,7 @@ static void ipcsyslog_init(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
G.shbuf = shmat(G.shmid, NULL, 0);
|
G.shbuf = shmat(G.shmid, NULL, 0);
|
||||||
if (!G.shbuf) {
|
if (G.shbuf == (void*) -1L) { /* shmat has bizarre error return */
|
||||||
bb_perror_msg_and_die("shmat");
|
bb_perror_msg_and_die("shmat");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user