Merge from emacs-24; up to 2012-12-30T19:34:25Z!jan.h.d@swipnet.se
[bpt/emacs.git] / admin / coccinelle / xzalloc.cocci
1 @@
2 expression x;
3 expression E;
4 @@
5 x =
6 - xmalloc
7 + xzalloc
8 (E)
9 ...
10 - memset (x, 0, E);