Cleanup: Fix return NULL from bool type function

This commit is contained in:
Richard Antalik 2020-05-02 13:33:23 +02:00
parent cfdff4fb63
commit 1623fdb3bc
Notes: blender-bot 2023-09-13 08:48:34 +02:00
Referenced by issue #76362, Flipped matcaps in workbench render engine don't show up in viewport rendered preview
1 changed files with 1 additions and 1 deletions

View File

@ -1292,7 +1292,7 @@ bool BKE_sequencer_cache_put_if_possible(const SeqRenderData *context,
}
if (!seq) {
return NULL;
return false;
}
if (BKE_sequencer_cache_recycle_item(scene)) {