Fix uninitialized field in basename/dirname util wrapper.

Shouldn't cause a problem as it's always set in subclass ctors,
just silences a coverity warning.
This commit is contained in:
Jon Siwek 2013-12-10 14:08:09 -06:00
parent e8739f785b
commit 5a67135486

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);