Skip to content

Commit

Permalink
Refs #5012 Correct a seg fault with single file searching.
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Jackson committed Apr 16, 2014
1 parent 04fbaa3 commit 256658c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/API/src/FileFinder.cpp
Expand Up @@ -129,7 +129,7 @@ namespace Mantid
Poco::File test(result);
if ( ( ! result.empty() ) && test.exists() )
{
foundFiles.push_back(*it);
foundFiles.push_back(result);
}
else
{
Expand Down

0 comments on commit 256658c

Please sign in to comment.