diff options
Diffstat (limited to 'host/lib/usrp')
| -rw-r--r-- | host/lib/usrp/x300/x300_impl.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/host/lib/usrp/x300/x300_impl.cpp b/host/lib/usrp/x300/x300_impl.cpp index 028058a58..374247fea 100644 --- a/host/lib/usrp/x300/x300_impl.cpp +++ b/host/lib/usrp/x300/x300_impl.cpp @@ -1022,7 +1022,9 @@ x300_impl::~x300_impl(void)                  release(mb.zpu_ctrl);                  //If the process is killed, the entire registry will disappear so we                  //don't need to worry about unclean shutdowns here. -                get_pcie_zpu_iface_registry().pop(mb.get_pri_eth().addr); +                if (get_pcie_zpu_iface_registry().has_key(mb.get_pri_eth().addr)) { +                    get_pcie_zpu_iface_registry().pop(mb.get_pri_eth().addr); +                }              }          }      }  | 
