gaim/gaim

7cd4ec51a06a
Parents 4df2155510d2
Children f16e28cf4b5d
Fix an incorrect string termination in IRC's mirc2txt. The existing
function was safe, merely incorrect. Fixes bug #1239512.
--- a/src/protocols/irc/parse.c Wed Jul 20 22:51:21 2005 -0400
+++ b/src/protocols/irc/parse.c Wed Jul 20 23:51:20 2005 -0400
@@ -384,7 +384,7 @@
result[j++] = result[i];
}
}
- result[i] = '\0';
+ result[j] = '\0';
return result;
}