Skip to content

Commit

Permalink
Use ASSERT0P() to check that a pointer is NULL.
Browse files Browse the repository at this point in the history
Signed-off-by: Dag-Erling Smørgrav <[email protected]>
  • Loading branch information
dag-erling committed Sep 1, 2023
1 parent 21699b5 commit 1b33d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/zfs/dbuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -2701,7 +2701,7 @@ dmu_buf_will_clone(dmu_buf_t *db_fake, dmu_tx_t *tx)
*/
mutex_enter(&db->db_mtx);
VERIFY(!dbuf_undirty(db, tx));
ASSERT3P(dbuf_find_dirty_eq(db, tx->tx_txg), ==, NULL);
ASSERT0P(dbuf_find_dirty_eq(db, tx->tx_txg));
if (db->db_buf != NULL) {
arc_buf_destroy(db->db_buf, db);
db->db_buf = NULL;
Expand Down

0 comments on commit 1b33d90

Please sign in to comment.