summaryrefslogtreecommitdiffstats
path: root/Alc/alcChorus.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-03-13 23:36:45 -0700
committerChris Robinson <[email protected]>2013-03-13 23:36:45 -0700
commit2486f13dae69fda15dec9e4aa1c61e7b235d62ff (patch)
tree97873ce7ca7f6d1cafab4000a7f51c68741ff137 /Alc/alcChorus.c
parent3fd0f23e48fc71718f438e035ffb09d4ba9a47a3 (diff)
Remove unnecessary NULL checks
Diffstat (limited to 'Alc/alcChorus.c')
-rw-r--r--Alc/alcChorus.c18
1 files changed, 7 insertions, 11 deletions
diff --git a/Alc/alcChorus.c b/Alc/alcChorus.c
index 5a97ff17..5a25d4d1 100644
--- a/Alc/alcChorus.c
+++ b/Alc/alcChorus.c
@@ -58,18 +58,14 @@ static ALvoid ChorusDestroy(ALeffectState *effect)
{
ALchorusState *state = (ALchorusState*)effect;
- if (state)
+ if(state)
{
- if (state->SampleBufferLeft != NULL)
- {
- free(state->SampleBufferLeft);
- state->SampleBufferLeft = NULL;
- }
- if (state->SampleBufferRight != NULL)
- {
- free(state->SampleBufferRight);
- state->SampleBufferRight = NULL;
- }
+ free(state->SampleBufferLeft);
+ state->SampleBufferLeft = NULL;
+
+ free(state->SampleBufferRight);
+ state->SampleBufferRight = NULL;
+
free(state);
}
}