From f33cb9f04e2b6629a56ec32ba4f6345a8acda2f1 Mon Sep 17 00:00:00 2001
From: Kevin Smith <git@kismith.co.uk>
Date: Fri, 16 Aug 2013 09:27:13 +0100
Subject: Don't allow passing NULL to the JID ctor

Change-Id: I5e0cf477632927e5383b60b7dd8922740a9b5d5d

diff --git a/Swiften/JID/JID.cpp b/Swiften/JID/JID.cpp
index 7b51867..e1502f1 100644
--- a/Swiften/JID/JID.cpp
+++ b/Swiften/JID/JID.cpp
@@ -132,6 +132,7 @@ struct EscapedCharacterFormatter {
 namespace Swift {
 
 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 798860d..eac1e2a 100644
--- a/Swiften/JID/JID.h
+++ b/Swiften/JID/JID.h
@@ -47,6 +47,8 @@ namespace Swift {
 
 			/**
 			 * See std::string constructor.
+			 *
+			 * Must not be NULL.
 			 */
 			JID(const char*);
 
-- 
cgit v0.10.2-6-g49f6