From 214e61fc2ca17affc971d7f7838a748ea8e93b4a Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 18 May 2022 18:12:53 +0200 Subject: Cleanup: fix Cycles asan warning Not sure why constructing a ustring inside [] is causing issues here, but it's slightly more efficient to construct it once anyway. --- intern/cycles/graph/node_enum.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'intern') diff --git a/intern/cycles/graph/node_enum.h b/intern/cycles/graph/node_enum.h index b3a55efb327..6c8bfed7ec8 100644 --- a/intern/cycles/graph/node_enum.h +++ b/intern/cycles/graph/node_enum.h @@ -19,8 +19,10 @@ struct NodeEnum { } void insert(const char *x, int y) { - left[ustring(x)] = y; - right[y] = ustring(x); + ustring ustr_x(x); + + left[ustr_x] = y; + right[y] = ustr_x; } bool exists(ustring x) const -- cgit v1.2.3