Fix T42093: segfault when trying to free unallocated depths zbuffer (border-zoom in 3DView).

Thanks to jensverwiebe (jens verwiebe) for investigations too!
This commit is contained in:
Bastien Montagne 2014-10-06 10:19:47 +02:00
parent 77af624524
commit 9e53a97ddf
Notes: blender-bot 2023-02-14 11:21:40 +01:00
Referenced by issue #42093, Bug on Zoom Border
1 changed files with 2 additions and 2 deletions

View File

@ -3423,7 +3423,7 @@ static int view3d_zoom_border_exec(bContext *C, wmOperator *op)
/* find the closest Z pixel */
depth_close = view3d_depth_near(&depth_temp);
MEM_freeN(depth_temp.depths);
MEM_SAFE_FREE(depth_temp.depths);
}
cent[0] = (((double)rect.xmin) + ((double)rect.xmax)) / 2;
@ -4640,7 +4640,7 @@ static float view_autodist_depth_margin(ARegion *ar, const int mval[2], int marg
view3d_update_depths_rect(ar, &depth_temp, &rect);
depth_close = view3d_depth_near(&depth_temp);
if (depth_temp.depths) MEM_freeN(depth_temp.depths);
MEM_SAFE_FREE(depth_temp.depths);
return depth_close;
}