]> nv-tegra.nvidia Code Review - linux-2.6.git/commit - fs/dlm
dlm: fix uninitialized variable for search_rsb_list callers
authorBenny Halevy <bhalevy@panasas.com>
Mon, 30 Jun 2008 16:59:14 +0000 (19:59 +0300)
committerDavid Teigland <teigland@redhat.com>
Mon, 14 Jul 2008 18:56:59 +0000 (13:56 -0500)
commit18c60c0a3b16fc7d6a55497a228602ad8509f838
treef963e66eddd4d527790a3d691cbb45e492cd6b0b
parent311f6fc77c51926dbdfbeab0a5d88d70f01fa3f4
dlm: fix uninitialized variable for search_rsb_list callers

gcc 4.3.0 correctly emits the following warning.
search_rsb_list does not *r_ret if no dlm_rsb is found
and _search_rsb may pass the uninitialized value upstream
on the error path when both calls to search_rsb_list
return non-zero error.

The fix sets *r_ret to NULL on search_rsb_list's not-found path.

Signed-off-by: Benny Halevy <bhalevy@panasas.com>
Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/lock.c