mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
5a12e7c134
Wed Aug 26 10:00:38 CDT 2009 Slackware 13.0 x86_64 is released as stable! Thanks to everyone who helped make this release possible -- see the RELEASE_NOTES for the credits. The ISOs are off to the replicator. This time it will be a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We're taking pre-orders now at store.slackware.com. Please consider picking up a copy to help support the project. Once again, thanks to the entire Slackware community for all the help testing and fixing things and offering suggestions during this development cycle. As always, have fun and enjoy! -P.
27 lines
867 B
Groff
27 lines
867 B
Groff
*** qam/qam_files.c.orig 2005-10-20 11:57:12.000000000 -0700
|
|
--- qam/qam_files.c 2006-01-27 13:38:38.000000000 -0800
|
|
***************
|
|
*** 411,416 ****
|
|
--- 411,422 ----
|
|
DB_APP_DATA, buf, 0, NULL, &real_name)) != 0)
|
|
goto err;
|
|
#endif
|
|
+
|
|
+ mpf = array->mpfarray[offset].mpf;
|
|
+ /* This extent my already be marked for delete and closed. */
|
|
+ if (mpf == NULL)
|
|
+ goto err;
|
|
+
|
|
/*
|
|
* The log must be flushed before the file is deleted. We depend on
|
|
* the log record of the last delete to recreate the file if we crash.
|
|
***************
|
|
*** 418,424 ****
|
|
if (LOGGING_ON(dbenv) && (ret = __log_flush(dbenv, NULL)) != 0)
|
|
goto err;
|
|
|
|
- mpf = array->mpfarray[offset].mpf;
|
|
(void)__memp_set_flags(mpf, DB_MPOOL_UNLINK, 1);
|
|
/* Someone could be real slow, let them close it down. */
|
|
if (array->mpfarray[offset].pinref != 0)
|
|
--- 424,429 ----
|