Tag: b1858190fc0180df70e9e7bab24a679129643f43

V4L/DVB (13414): ttusb-dec: do not overwrite the first part of phys string

Author: Márton Németh <nm127@freemail.hu> Use strlcat() to append a string to the previously created first part. The semantic match that finds this kind of problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression dev; expression phys; expression str; expression size; @@ usb_make_path(dev, phys, size); – strlcpy(phys, str, size); + strlcat(phys, str, size); // Signed-off-by: Márton Németh …

Lire la suite