Преглед изворни кода

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 година
родитељ
комит
3dac26bf7a
1 измењених фајлова са 1 додато и 1 уклоњено
  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);
     }