Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJesse Yurkovich <jesse.y@gmail.com>2022-08-05 05:46:51 +0300
committerJesse Yurkovich <jesse.y@gmail.com>2022-08-05 05:46:51 +0300
commit0d476bcacd17b82cf596819229d1937be0321250 (patch)
tree506a1f556c4ce0917ee6ff6cd03af7152c2c10e3 /source
parent9da0cfb86ee098b9172da69bb43703aa2efba691 (diff)
parentbd467100dd3bd038b0628993f196b44d880ccc98 (diff)
Merge remote-tracking branch 'origin/blender-v3.3-release'
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/image.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/image.cc b/source/blender/blenkernel/intern/image.cc
index f3e7ae449a1..5c0cb3c57bc 100644
--- a/source/blender/blenkernel/intern/image.cc
+++ b/source/blender/blenkernel/intern/image.cc
@@ -5607,7 +5607,7 @@ bool BKE_image_clear_renderslot(Image *ima, ImageUser *iuser, int slot)
}
RenderSlot *render_slot = static_cast<RenderSlot *>(BLI_findlink(&ima->renderslots, slot));
- if (!slot) {
+ if (!render_slot) {
return false;
}
if (render_slot->render) {