Browse Source

HPCC-16422 Fix clang warning about use of uninitialized variable

Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
Gavin Halliday 8 years ago
parent
commit
32329b76d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      common/environment/environment.cpp

+ 1 - 1
common/environment/environment.cpp

@@ -1556,7 +1556,7 @@ void CLocalEnvironment::clearCache()
     if (conn)
     {
         p.clear();
-        unsigned mode;
+        unsigned mode = 0;
         try
         {
             conn->reload();