On Fri, Sep 09, 2022 at 07:30:39AM +0200, Nam Cao wrote: > A line of code is attempting to set the entire struct vnt_rdes0 to > zero by treating it as unsigned int. However, this only works if > sizeof(unsigned int) is equal to sizeof(struct vnt_rdes0) (4 bytes), > which is not guaranteed. This may cause memory conruption if > sizeof(unsigned int) is 8 bytes for example. Fix the problem by using > memset instead. sizeof(unsigned int) is not going to be 8 bytes, so there's no memory issue here. But your fix is good, so can you please just rewrite this to be "make it more obvious what is happening" type of patch? thanks, greg k-h