Fixed stupid typo in boolean equation

newfile
Markus Koch 2017-02-15 22:49:04 +01:00
parent 4245310392
commit 0a6beb710c
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ static gchar *mdiary_get_line_from_string(gchar **str_ptr)
gchar *start;
gchar *str;
if (!str_ptr || !*str_ptr | !**str_ptr)
if (!str_ptr || !*str_ptr || !**str_ptr)
return NULL;
str = *str_ptr;