aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorMatthew Crymble <matthew.crymble@ni.com>2020-06-25 20:02:24 -0500
committerAaron Rossetto <aaron.rossetto@ni.com>2020-06-26 14:31:14 -0500
commit9318323b769200ee328456b0ef92ea19c1b96b6e (patch)
tree1b5b0df89eafa0e1b6e6ff453ffb730f8410ec8a /host/lib
parent27232433a2ed8aa60a59a417a47703627ad8581c (diff)
downloaduhd-9318323b769200ee328456b0ef92ea19c1b96b6e.tar.gz
uhd-9318323b769200ee328456b0ef92ea19c1b96b6e.tar.bz2
uhd-9318323b769200ee328456b0ef92ea19c1b96b6e.zip
uhd: improved handling of empty serial number hints
This allows device::find() calls to proceed even when encountering an empty/invalid serial number or serial number device argument hint.
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/utils/serial_number.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/utils/serial_number.cpp b/host/lib/utils/serial_number.cpp
index af66197fd..61296a913 100644
--- a/host/lib/utils/serial_number.cpp
+++ b/host/lib/utils/serial_number.cpp
@@ -17,6 +17,8 @@ namespace uhd { namespace utils {
return a == b;
} catch (std::out_of_range& e) {
return false;
+ } catch (std::invalid_argument& e) {
+ return false;
}
}
}}