Index: /trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp	(revision 33935)
+++ /trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp	(revision 33936)
@@ -61,7 +61,9 @@
 VMMR0DECL(int) CPUMR0ModuleInit(void)
 {
+    int rc = VINF_SUCCESS;
 #ifdef VBOX_WITH_VMMR0_DISABLE_LAPIC_NMI
-    return cpumR0MapLocalApics();
-#endif
+    rc = cpumR0MapLocalApics();
+#endif
+    return rc;
 }
 
