Rebase against c64aa0006e4a33d755a57a693cd81dc1ed95fa9d.

This commit is contained in:
Alistair Leslie-Hughes
2023-11-17 11:20:22 +11:00
parent a101f89071
commit 6278681370
4 changed files with 26 additions and 26 deletions

View File

@@ -68,7 +68,7 @@ index 6cc7ccd6d73..79594301c35 100644
+
+ if (!ref)
+ {
+ heap_free(audio);
+ free(audio);
+ }
+
+ return ref;
@@ -274,7 +274,7 @@ index 6cc7ccd6d73..79594301c35 100644
+
+static HRESULT speech_audio_create(void **obj)
+{
+ struct speech_audio *This = heap_alloc(sizeof(*This));
+ struct speech_audio *This = malloc(sizeof(*This));
+
+ if (!This)
+ return E_OUTOFMEMORY;