comparison src/dmfft.c @ 2414:69a5af2eb1ea

Remove useless dmMemset().
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 13 Jan 2020 23:27:01 +0200
parents e68f7b0cb536
children
comparison
equal deleted inserted replaced
2413:902cc22018a1 2414:69a5af2eb1ea
65 { 65 {
66 if (ctx != NULL) 66 if (ctx != NULL)
67 { 67 {
68 dmFree(ctx->breversed); 68 dmFree(ctx->breversed);
69 dmFree(ctx->sinTable); 69 dmFree(ctx->sinTable);
70 dmMemset(ctx, 0, sizeof(DMFFTContext)); 70 memset(ctx, 0, sizeof(DMFFTContext));
71 } 71 }
72 } 72 }
73 73
74 74
75 int dmRealFFT(DMFFTContext * ctx, DMFFTType * buffer) 75 int dmRealFFT(DMFFTContext * ctx, DMFFTType * buffer)