diff options
author | Brian Behlendorf <[email protected]> | 2009-07-07 15:50:11 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-07-07 15:50:11 -0700 |
commit | 07a6b68575232ef89d1778f9475caa378fbafbe0 (patch) | |
tree | e03fa4ea157c29cd7307957f2d918a6fe7682519 /module/zfs/arc.c | |
parent | fb26df15c8416b3e5bb7ef50c772e9b0fcae29f2 (diff) | |
parent | 7373ddf55f6738ab0e1616c51fe00a246f295b02 (diff) |
Merge branch 'gcc-uninit' into refs/top-bases/gcc-branch
Diffstat (limited to 'module/zfs/arc.c')
-rw-r--r-- | module/zfs/arc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/arc.c b/module/zfs/arc.c index 421b3ba8d..153081678 100644 --- a/module/zfs/arc.c +++ b/module/zfs/arc.c @@ -2958,7 +2958,7 @@ void arc_release(arc_buf_t *buf, void *tag) { arc_buf_hdr_t *hdr; - kmutex_t *hash_lock; + kmutex_t *hash_lock = NULL; l2arc_buf_hdr_t *l2hdr; uint64_t buf_size = 0; boolean_t released = B_FALSE; |