bmc: pci_handler: set pointer to null

Set the mapped pointer to null because it actually holds MAP_FAILED and
later we check for null, and consistently.

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I6948dbf76c171e4b1a93b1f117e67e8cd2ec856e
diff --git a/pci_handler.cpp b/pci_handler.cpp
index ecdafd1..436c63e 100644
--- a/pci_handler.cpp
+++ b/pci_handler.cpp
@@ -70,6 +70,7 @@
     {
         sys->close(mappedFd);
         mappedFd = -1;
+        mapped = nullptr;
 
         return false;
     }