Skip to content

Commit

Permalink
Fix ifstream initialization in FileDescriptor. Refs #7263
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Jul 4, 2013
1 parent 82d9313 commit 5ff698b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Kernel/src/FileDescriptor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ namespace Mantid
* @throws std::invalid_argument if the filename is empty or the file does not exist
*/
FileDescriptor::FileDescriptor(const std::string & filename) :
m_filename(), m_extension(), m_file(NULL), m_ascii(false)
m_filename(), m_extension(), m_file(), m_ascii(false)
{
if(filename.empty())
{
Expand Down

0 comments on commit 5ff698b

Please sign in to comment.