Fixes an uninitialized field in class OsStackTraceGetter.
This commit is contained in:
parent
6149876141
commit
1da9ceefa5
|
@ -606,7 +606,7 @@ class OsStackTraceGetterInterface {
|
|||
// A working implementation of the OsStackTraceGetterInterface interface.
|
||||
class OsStackTraceGetter : public OsStackTraceGetterInterface {
|
||||
public:
|
||||
OsStackTraceGetter() {}
|
||||
OsStackTraceGetter() : caller_frame_(NULL) {}
|
||||
virtual String CurrentStackTrace(int max_depth, int skip_count);
|
||||
virtual void UponLeavingGTest();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user