Block a user
BMesh free: use after free with BMVert coordinates
I'd argue it is a bug. My understanding is that when a bmesh object is deleted, only the "native" object is actually deleted; the Python wrapper objects are updated to be "dead" so that they throw…
BMesh free: use after free with BMVert coordinates
Tried modifying the script a bit to do more allocations:
import random
import bpy
import bmesh
from mathutils import Vector
bm = bmesh.new()
v = bm.verts.new(Vector((1, 2, 3)))
co…
BMesh free: use after free with BMVert coordinates