mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
BUG_ON() Conversion in fs/binfmt_elf_fdpic.c
this changes if() BUG(); constructs to BUG_ON() which is cleaner and can better optimized away Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
parent
b1eecf7e04
commit
88bcd51262
@ -572,8 +572,7 @@ static int create_elf_fdpic_tables(struct linux_binprm *bprm,
|
||||
csp -= sizeof(unsigned long);
|
||||
__put_user(bprm->argc, (unsigned long *) csp);
|
||||
|
||||
if (csp != sp)
|
||||
BUG();
|
||||
BUG_ON(csp != sp);
|
||||
|
||||
/* fill in the argv[] array */
|
||||
#ifdef CONFIG_MMU
|
||||
|
Loading…
Reference in New Issue
Block a user