Browse Source

Merge pull request #2193 from ghalliday/memleakbreak

Fix regression if memory leak option is enabled

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 13 years ago
parent
commit
3dac26bf7a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ecl/eclcc/eclcc.cpp

+ 1 - 1
ecl/eclcc/eclcc.cpp

@@ -1471,7 +1471,7 @@ bool EclCC::parseCommandLineOptions(int argc, const char* argv[])
     if (optDebugMemLeak)
     {
         StringBuffer title;
-        title.append(inputFiles.item(0).queryFilename()).newline();
+        title.append(inputFileNames.item(0)).newline();
         initLeakCheck(title);
     }