From ca0509e20ba92fbe0c21e1b7d2795895637cdf20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 6 Mar 2014 06:27:01 +0100 Subject: [PATCH] Library: Fixed bug I caused when I cleaned up patch --- lib/library.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/library.cpp b/lib/library.cpp index 736687a4e..87706dd57 100644 --- a/lib/library.cpp +++ b/lib/library.cpp @@ -324,4 +324,5 @@ const Library::ArgumentChecks * Library::getarg(const std::string &functionName, const std::map::const_iterator it3 = it1->second.find(-1); if (it3 != it1->second.end()) return &it3->second; + return nullptr; }