diff options
author | Glenn Kasten <gkasten@android.com> | 2014-03-18 17:40:58 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-18 17:40:58 +0000 |
commit | 0c282de73240b1efce64558ab2fa0a8be1f4292b (patch) | |
tree | 1dc389ec1992e8d5afaab470a0c6aeb7fbfd5298 | |
parent | 098b28fc88b3d96eada2f9db318d9c38c70cf674 (diff) | |
parent | 77658a069c81a0d5b4a1b81443b470a3ea64cab0 (diff) | |
download | frameworks_av-0c282de73240b1efce64558ab2fa0a8be1f4292b.zip frameworks_av-0c282de73240b1efce64558ab2fa0a8be1f4292b.tar.gz frameworks_av-0c282de73240b1efce64558ab2fa0a8be1f4292b.tar.bz2 |
am 77658a06: Merge "AudioPolicyService: malloc/delete pair"
* commit '77658a069c81a0d5b4a1b81443b470a3ea64cab0':
AudioPolicyService: malloc/delete pair
-rw-r--r-- | services/audioflinger/AudioPolicyService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/AudioPolicyService.cpp b/services/audioflinger/AudioPolicyService.cpp index 646a317..a37272d 100644 --- a/services/audioflinger/AudioPolicyService.cpp +++ b/services/audioflinger/AudioPolicyService.cpp @@ -1301,7 +1301,7 @@ effect_param_t *AudioPolicyService::loadEffectParameter(cnode *root) return fx_param; error: - delete fx_param; + free(fx_param); return NULL; } |