SUPERNOVA: Fix missing return statement

This commit is contained in:
Adrian Frühwirth 2018-04-07 11:25:47 +02:00
parent 4702681be2
commit 61e262be89

View file

@ -69,7 +69,7 @@ void PoMessageList::insert(const char *translation, const char *msg, const char
const char *PoMessageList::findTranslation(const char *msg, const char *context) {
if (msg == NULL || *msg == '\0')
NULL;
return NULL;
// binary-search for the message
int leftIndex = 0;