Merge remote-tracking branch 'origin/fastpath'

* origin/fastpath:
  Fix uninitialized field in basename/dirname util wrapper.
This commit is contained in:
Robin Sommer 2013-12-10 15:02:50 -08:00
commit 6c20df11cc
3 changed files with 7 additions and 1 deletions

View file

@ -1,4 +1,9 @@
2.2-70 | 2013-12-10 15:02:50 -0800
* Fix (harmless) uninitialized field in basename/dirname util
wrapper. (Jon Siwek)
2.2-68 | 2013-12-09 15:19:37 -0800 2.2-68 | 2013-12-09 15:19:37 -0800
* Several improvements to input framework error handling for more * Several improvements to input framework error handling for more

View file

@ -1 +1 @@
2.2-68 2.2-70

View file

@ -230,6 +230,7 @@ public:
protected: protected:
SafePathOp() SafePathOp()
: result(), error()
{ } { }
void CheckValid(const char* result, const char* path, bool error_aborts); void CheckValid(const char* result, const char* path, bool error_aborts);