Re: [PATCH v3 2/4] drm/mediatek: Add cnt checking for coverity issue

2023-07-09 Thread 胡俊光

Re: [PATCH v3 2/4] drm/mediatek: Add cnt checking for coverity issue

2023-06-21 Thread Alexandre Mergnat
On 21/06/2023 12:22, Jason-JH.Lin wrote: CERT-C Characters and Strings (CERT STR31-C) all_drm_priv[cnt] evaluates to an address that could be at negative offset of an array. In mtk_drm_get_all_drm_priv(): Guarantee that storage for strings has sufficient space for character data and the null ter

[PATCH v3 2/4] drm/mediatek: Add cnt checking for coverity issue

2023-06-21 Thread Jason-JH . Lin
CERT-C Characters and Strings (CERT STR31-C) all_drm_priv[cnt] evaluates to an address that could be at negative offset of an array. In mtk_drm_get_all_drm_priv(): Guarantee that storage for strings has sufficient space for character data and the null terminator. So change cnt to unsigned int and