From 13ba564c956d8584d661aeb6ff7c9fa161b84f12 Mon Sep 17 00:00:00 2001 From: Julia Lawall Date: Sun, 30 Nov 2014 19:14:12 +0100 Subject: [PATCH] target: remove unneeded array Delete a local array that is only used to be initialized by memset. A semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ identifier x; type T; @@ { ... when any -T x[...]; <+... when != x - memset(x,...); ...+> } // Signed-off-by: Julia Lawall Signed-off-by: Nicholas Bellinger --- Reading git-format-patch failed