projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6444174
)
um: don't compare a pointer to 0
author
Sasha Levin
<sasha.levin@oracle.com>
Thu, 20 Dec 2012 19:11:35 +0000
(14:11 -0500)
committer
H. Peter Anvin
<hpa@linux.intel.com>
Thu, 20 Dec 2012 19:49:39 +0000
(11:49 -0800)
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Link:
http://lkml.kernel.org/r/1356030701-16284-27-git-send-email-sasha.levin@oracle.com
Cc: Richard Weinberger <richard@nod.at>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
arch/x86/um/fault.c
patch
|
blob
|
history
diff --git
a/arch/x86/um/fault.c
b/arch/x86/um/fault.c
index 8784ab30d91b5504932701ca31cdbbd0476135f6..84ac7f7b0257d6f1398cd41a7043fad25b73dc76 100644
(file)
--- a/
arch/x86/um/fault.c
+++ b/
arch/x86/um/fault.c
@@
-20,7
+20,7
@@
int arch_fixup(unsigned long address, struct uml_pt_regs *regs)
const struct exception_table_entry *fixup;
fixup = search_exception_tables(address);
- if (fixup
!= 0
) {
+ if (fixup) {
UPT_IP(regs) = fixup->fixup;
return 1;
}