Skip to content

Commit

Permalink
Fix bug where history is no longer being added to the history database
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheng5 committed Apr 12, 2011
1 parent 0e80b96 commit 0064339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/core/FilePath.cpp
Expand Up @@ -830,7 +830,7 @@ Error FilePath::open_w(boost::shared_ptr<std::ostream>* pStream, bool truncate)
GENERIC_WRITE,
0, // exclusive access
NULL,
truncate ? CREATE_ALWAYS : CREATE_NEW,
truncate ? CREATE_ALWAYS : OPEN_ALWAYS,
0,
NULL);
if (hFile == INVALID_HANDLE_VALUE)
Expand Down

0 comments on commit 0064339

Please sign in to comment.