diff options
author | Kevin Smith <git@kismith.co.uk> | 2013-08-16 08:27:13 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2013-08-16 11:46:12 (GMT) |
commit | 1e4b2b1ee68865eaa0670a21ad0a0af1777c8099 (patch) | |
tree | 188548e8e597ea2d57ec876f5d02d6d90b4f24a7 | |
parent | e4a3c018fe824c0c402dbc3167a113276fbe6e4e (diff) | |
download | swift-1e4b2b1ee68865eaa0670a21ad0a0af1777c8099.zip swift-1e4b2b1ee68865eaa0670a21ad0a0af1777c8099.tar.bz2 |
Don't allow passing NULL to the JID ctor
Change-Id: I5e0cf477632927e5383b60b7dd8922740a9b5d5d
-rw-r--r-- | Swiften/JID/JID.cpp | 1 | ||||
-rw-r--r-- | Swiften/JID/JID.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Swiften/JID/JID.cpp b/Swiften/JID/JID.cpp index 0822595..f195f6f 100644 --- a/Swiften/JID/JID.cpp +++ b/Swiften/JID/JID.cpp @@ -112,6 +112,7 @@ struct EscapedCharacterFormatter { #endif JID::JID(const char* jid) : valid_(true) { + assert(jid); initializeFromString(std::string(jid)); } diff --git a/Swiften/JID/JID.h b/Swiften/JID/JID.h index 08309d3..779610b 100644 --- a/Swiften/JID/JID.h +++ b/Swiften/JID/JID.h @@ -45,6 +45,8 @@ namespace Swift { /** * See std::string constructor. + * + * Must not be NULL. */ JID(const char*); |