From 665fc092aa936eeb6b1b3202d41caf9b54dbd475 Mon Sep 17 00:00:00 2001 From: marauder2k7 Date: Tue, 23 Jul 2024 13:09:23 +0100 Subject: [PATCH] Update uuid.cpp remove dmalloc --- Engine/source/core/util/uuid.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Engine/source/core/util/uuid.cpp b/Engine/source/core/util/uuid.cpp index f8390fcf5..1a4c42315 100644 --- a/Engine/source/core/util/uuid.cpp +++ b/Engine/source/core/util/uuid.cpp @@ -153,8 +153,6 @@ static void format_token(char *target, const xuuid_t *u) u->node[0], u->node[1], u->node[2], u->node[3], u->node[4], u->node[5]); - target = (char*)dMalloc(len+1); - snprintf(target, len, "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x", u->time_low, u->time_mid, u->time_hi_and_version, u->clock_seq_hi_and_reserved, u->clock_seq_low,