ITS#7191 more alignment tweaks

Revealed when gcc optimization is enabled
vmware
Howard Chu 13 years ago
parent 2ccf0d58b2
commit 15f3e650da
  1. 5
      libraries/libmdb/mdb.c

@ -4245,7 +4245,6 @@ new_sub:
* DB are all zero size. * DB are all zero size.
*/ */
if (do_sub) { if (do_sub) {
MDB_db *db;
int xflags; int xflags;
put_sub: put_sub:
xdata.mv_size = 0; xdata.mv_size = 0;
@ -4279,7 +4278,7 @@ put_sub:
xflags |= (flags & MDB_APPEND); xflags |= (flags & MDB_APPEND);
rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, data, &xdata, xflags); rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, data, &xdata, xflags);
if (flags & F_SUBDATA) { if (flags & F_SUBDATA) {
db = NODEDATA(leaf); void *db = NODEDATA(leaf);
memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db)); memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
} }
} }
@ -4329,7 +4328,7 @@ mdb_cursor_del(MDB_cursor *mc, unsigned int flags)
if (mc->mc_xcursor->mx_db.md_entries) { if (mc->mc_xcursor->mx_db.md_entries) {
if (leaf->mn_flags & F_SUBDATA) { if (leaf->mn_flags & F_SUBDATA) {
/* update subDB info */ /* update subDB info */
MDB_db *db = NODEDATA(leaf); void *db = NODEDATA(leaf);
memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db)); memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
} else { } else {
/* shrink fake page */ /* shrink fake page */

Loading…
Cancel
Save