[jsonapi] Fix boolean value assigned to pointer (from cppcheck)

This commit is contained in:
ejurgensen 2024-04-10 22:41:08 +02:00
parent 677aceccb6
commit 72454de4ef
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ fetch_artist(bool *notfound, const char *artist_id)
if ((ret = db_query_fetch_group(&dbgri, &query_params)) == 0)
{
artist = artist_to_json(&dbgri);
notfound = false;
*notfound = false;
}
error: