a53b19828d
- drop unused patches - fix wrong memset and strncat usage ({memset,strncat}-fix.patch) OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/csound?expand=0&rev=7
17 lines
1.0 KiB
Diff
17 lines
1.0 KiB
Diff
Index: Opcodes/gab/sliderTable.c
|
|
===================================================================
|
|
--- Opcodes/gab/sliderTable.c.orig
|
|
+++ Opcodes/gab/sliderTable.c
|
|
@@ -368,9 +368,9 @@ static int sliderTable64(CSOUND *csound,
|
|
break; \
|
|
} \
|
|
*outTable++ = \
|
|
- *yt1++ = *c1++ * value + *c2++ * *yt1; /* filters the output */ \
|
|
+ *yt1 = *c1++ * value + *c2++ * *yt1; /* filters the output */ \
|
|
\
|
|
- min++; max++; j++; ftp++; \
|
|
+ yt1++; min++; max++; j++; ftp++; \
|
|
} \
|
|
} \
|
|
return OK;
|