[NeoStats-Devel] [Commits] r13 - trunk
| Newsgroups | gmane.comp.neostats.devel |
|---|---|
| Message-ID | <[email protected]> |
Author: Mark
Date: Fri May 6 06:07:18 2005
New Revision: 13
Modified:
trunk/play.c
Log:
fix incorrect use of free
Modified: trunk/play.c
==============================================================================
--- trunk/play.c (original)
+++ trunk/play.c Fri May 6 06:07:18 2005
@@ -643,6 +643,6 @@
if (gd->currentroll == 3) {
irc_chanprivmsg (ys_bot, cmdparams->channel->name, "\0039That was your last roll this turn\0037 %s\0039, select which score to take", cmdparams->source->name);
}
- free(buf);
+ ns_free(buf);
return;
}