Re: [PATCH][next] drm: simpledrm: Fix use after free issues

2021-05-13 Thread Thomas Zimmermann
Hi Am 12.05.21 um 22:30 schrieb Colin King: From: Colin Ian King There are two occurrances where objects are being free'd via a put call and yet they are being referenced after this. Fix these by adding in the missing continue statement so that the put on the end of the loop is skipped over.

[PATCH][next] drm: simpledrm: Fix use after free issues

2021-05-12 Thread Colin King
From: Colin Ian King There are two occurrances where objects are being free'd via a put call and yet they are being referenced after this. Fix these by adding in the missing continue statement so that the put on the end of the loop is skipped over. Addresses-Coverity: ("Use after free") Fixes: 1