Browse Source

video: of: display_timing: double free on error

The display_timings_release() function frees "disp" and we free it
again on the next line.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Dan Carpenter 11 năm trước cách đây
mục cha
commit
62795a0d81
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      drivers/video/of_display_timing.c

+ 1 - 0
drivers/video/of_display_timing.c

@@ -236,6 +236,7 @@ timingfail:
 	if (native_mode)
 		of_node_put(native_mode);
 	display_timings_release(disp);
+	disp = NULL;
 entryfail:
 	kfree(disp);
 dispfail: