Tag: 9518f179128b02c221ffdd692249836bb05a94de

V4L/DVB (13685): Correct code taking the size of a pointer

Author: Julia Lawall <julia@diku.dk> sizeof(print_buf) is just the size of the pointer. Change it to the size used in the allocation of print_buf earlier in the same function. A simplified version of the semantic patch that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression *x; expression f; type T; @@ *f(…,(T)x,…) // Cc: …

Lire la suite