alsa: Remove pointless initialization.
[paraslash.git] / fec.c
diff --git a/fec.c b/fec.c
index e5c2a3b83e005c8596e6bcf951702bc3cb2cf5e1..2301cc8d2d4653b8bc82a8bcc46b5867b5d7af14 100644 (file)
--- a/fec.c
+++ b/fec.c
@@ -182,11 +182,15 @@ static void generate_gf(void)
 static void addmul(unsigned char *dst1, const unsigned char *src1,
        unsigned char c, int sz)
 {
+       unsigned char *dst, *lim, *col;
+       const unsigned char *src = src1;
+
        if (c == 0)
                return;
-       unsigned char *dst = dst1, *lim = &dst[sz - UNROLL + 1],
-               *col = gf_mul_table[c];
-       const unsigned char *src = src1;
+
+       dst = dst1;
+       lim = &dst[sz - UNROLL + 1];
+       col = gf_mul_table[c];
 
        for (; dst < lim; dst += UNROLL, src += UNROLL) {
                dst[0] ^= col[src[0]];