From b4b970c59affbd2114c38638e86ed5f9b235cff7 Mon Sep 17 00:00:00 2001 From: Michael West Date: Mon, 28 Oct 2013 13:02:29 -0700 Subject: CID 1104347: Fixed logically dead code. CID 1104336: Fixed array comparison to 0. --- host/lib/utils/paths.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/host/lib/utils/paths.cpp b/host/lib/utils/paths.cpp index 53055314b..f9d8b613c 100644 --- a/host/lib/utils/paths.cpp +++ b/host/lib/utils/paths.cpp @@ -113,8 +113,8 @@ std::string uhd::get_tmp_path(void){ //try the stdio define if available #ifdef P_tmpdir - if (P_tmpdir != NULL) return P_tmpdir; - #endif + return P_tmpdir; + #else //try unix environment variables tmp_path = std::getenv("TMPDIR"); @@ -122,6 +122,7 @@ std::string uhd::get_tmp_path(void){ //give up and use the unix default return "/tmp"; + #endif } std::string uhd::get_app_path(void){ -- cgit v1.2.3