Author: Whiteknight
Date: Tue Dec 23 06:26:47 2008
New Revision: 34275
Modified:
trunk/src/inter_run.c
Log:
[Patch] remove a little bit of logic redundancy. A smart compiler probably
ignored this already, but I don't count on all compilers being smart. jimmy++
Modified: trunk/src/inter_run.c
==============================================================================
--- trunk/src/inter_run.c (original)
+++ trunk/src/inter_run.c Tue Dec 23 06:26:47 2008
@@ -217,7 +217,7 @@
new_sig[0] = 'O';
/* -1 from the end, +1 for the nul at the end */
- memcpy(new_sig+1, sig+1, len-1+1);
+ memcpy(new_sig+1, sig+1, len);
sig_p = new_sig;
}