From a51903fbb66a32b996e37e38b5634d74358a3330 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 1 Oct 2015 21:24:04 -0400 Subject: Avoid NULL dereference Coverity CID 1325297 Signed-off-by: Dirk Hohndel --- qt-ui/locationinformation.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'qt-ui') diff --git a/qt-ui/locationinformation.cpp b/qt-ui/locationinformation.cpp index 11dc53220..2cc554f81 100644 --- a/qt-ui/locationinformation.cpp +++ b/qt-ui/locationinformation.cpp @@ -565,7 +565,8 @@ void DiveLocationLineEdit::setCurrentDiveSiteUuid(uint32_t uuid) struct dive_site *ds = get_dive_site_by_uuid(uuid); if (!ds) clear(); - setText(ds->name); + else + setText(ds->name); } void DiveLocationLineEdit::showPopup() -- cgit v1.2.3-70-g09d2