diff --git a/src/wxSimpleJSON.cpp b/src/wxSimpleJSON.cpp index 724dc91..89a2c32 100644 --- a/src/wxSimpleJSON.cpp +++ b/src/wxSimpleJSON.cpp @@ -364,7 +364,7 @@ bool wxSimpleJSON::HasProperty(const wxString& name) wxSimpleJSON::JSONType wxSimpleJSON::GetType() const { - return static_cast(m_d->type); + return (IsOk() ? static_cast(m_d->type) : JSONType::IS_INVALID); } wxArrayString wxSimpleJSON::GetObjectKeys(const wxMBConv &conv)