allocated memory was previously not freed in the event of an error
with rwlock initialization.

Signed-off-by: Sunday Clement <Sunday.Clement@amd.com>
Этот коммит содержится в:
Sunday Clement
2025-05-29 10:47:12 -04:00
коммит произвёл Clement, Sunday
родитель fc561ff37a
Коммит 293092f32f
+3 -3
Просмотреть файл
@@ -717,15 +717,15 @@ SharedMutex CreateSharedMutex() {
}
#endif
pthread_rwlock_t* lock = new pthread_rwlock_t;
err = pthread_rwlock_init(lock, &attrib);
std::unique_ptr<pthread_rwlock_t> lock(new pthread_rwlock_t);
err = pthread_rwlock_init(lock.get(), &attrib);
if (err != 0) {
fprintf(stderr, "rw lock init failed: %s\n", strerror(err));
return nullptr;
}
pthread_rwlockattr_destroy(&attrib);
return lock;
return lock.release();
}
bool TryAcquireSharedMutex(SharedMutex lock) {