fixed crash when creating a new binlog file

This commit is contained in:
Borja Ferrer 2006-03-24 19:29:49 +00:00
parent 76afa40270
commit 414ecdfffa

View File

@ -85,7 +85,7 @@ void BinLog::WriteOp(BinLogOp op, int plug, ...)
if (!fp)
return;
if (g_binlog_maxsize)
if (g_binlog_maxsize && op != BinLog_End)
{
fseek(fp, 0, SEEK_END);
if (ftell(fp) > (g_binlog_maxsize * (1024 * 1024)))