mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-24 15:47:18 -04:00
journal index array was corrupted on write
This commit is contained in:
parent
e4c6adf028
commit
e0a90d7579
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: journal.c,v 1.69 2000/12/11 19:24:08 bwelling Exp $ */
|
||||
/* $Id: journal.c,v 1.70 2000/12/22 23:37:03 gson Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1157,7 +1157,7 @@ dns_journal_commit(dns_journal_t *j) {
|
|||
}
|
||||
INSIST(p == j->rawindex + rawbytes);
|
||||
|
||||
CHECK(journal_write(j, j->index, rawbytes));
|
||||
CHECK(journal_write(j, j->rawindex, rawbytes));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue