[PATCH 0/6] Remove useless calls to memset().

2012-12-01 Thread Cyril Roelandt
The following six patches remove useless calls to memset(). They have been found with this Coccinelle script: @@ expression E; expression S; @@ -memset(E, 0, S); memcpy(E, ..., S); They have only been tested by compilation. WBR, Cyril Roelandt. Cyril Roelandt (6): bna: remove useless

[PATCH 0/6] Remove useless calls to memset().

2012-12-01 Thread Cyril Roelandt
The following six patches remove useless calls to memset(). They have been found with this Coccinelle script: spml @@ expression E; expression S; @@ -memset(E, 0, S); memcpy(E, ..., S); /spml They have only been tested by compilation. WBR, Cyril Roelandt. Cyril Roelandt (6): bna: remove