kfree on NULL pointer is a no-op.

Signed-off-by: Syam Sidhardhan <s.s...@samsung.com>
---
 drivers/media/pci/ivtv/ivtvfb.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/media/pci/ivtv/ivtvfb.c b/drivers/media/pci/ivtv/ivtvfb.c
index 05b94aa..9ff1230 100644
--- a/drivers/media/pci/ivtv/ivtvfb.c
+++ b/drivers/media/pci/ivtv/ivtvfb.c
@@ -1171,8 +1171,7 @@ static void ivtvfb_release_buffers (struct ivtv *itv)
                fb_dealloc_cmap(&oi->ivtvfb_info.cmap);
 
        /* Release pseudo palette */
-       if (oi->ivtvfb_info.pseudo_palette)
-               kfree(oi->ivtvfb_info.pseudo_palette);
+       kfree(oi->ivtvfb_info.pseudo_palette);
 
 #ifdef CONFIG_MTRR
        if (oi->fb_end_aligned_physaddr) {
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to