Re: [PATCH] treewide: Fix common grammar mistake "the the"

2024-04-11 Thread Tyler Hicks
On 2024-04-11 17:04:40, Thorsten Blum wrote: > Use `find . -type f -exec sed -i 's/\/the/g' {} +` to find all > occurrences of "the the" and replace them with a single "the". > > Changes only comments and documentation - no code changes. > > S

Re: [PATCH] drm_edid-load: Fix a missing-check bug in drivers/gpu/drm/drm_edid_load.c

2019-06-18 Thread Tyler Hicks
On 2019-05-22 17:55:35, Jani Nikula wrote: > On Wed, 22 May 2019, Gen Zhang wrote: > > In drm_load_edid_firmware(), fwstr is allocated by kstrdup(). And fwstr > > is dereferenced in the following codes. However, memory allocation > > functions such as kstrdup() may fail and returns NULL. Derefere