Browse Source

Merge branch 'candidate-7.6.x'

Signed-off-by: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 5 years ago
parent
commit
0469ae73f7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      common/wuanalysis/anacommon.cpp

+ 1 - 1
common/wuanalysis/anacommon.cpp

@@ -90,7 +90,7 @@ void PerformanceIssue::setLocation(const char * definition)
         filename.append(p1-definition, definition);
     line = atoi(p1+1);
     column = atoi(comma+1);
-    if (line < 0 || column < 0)
+    if (line==0 || column==0)
     {
         line=0;
         column=0;