ao_coreaudio: use correct free function on errors

This commit is contained in:
wm4 2016-07-13 16:34:00 +02:00
parent b5bc93d009
commit 79f48500e2
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ OSStatus ca_get_ary(AudioObjectID id, ca_scope scope, ca_sel selector,
return err;
coreaudio_error_free:
free(*data);
talloc_free(*data);
coreaudio_error:
return err;
}