Staging
v0.8.1
https://github.com/git/git
Raw File
Tip revision: bf949ade81106fbda068c1fdb2c6fd1cb1babe7e authored by Junio C Hamano on 16 May 2021, 12:04:46 UTC
Git 2.32-rc0
Tip revision: bf949ad
hashmap.cocci
@ hashmap_entry_init_usage @
expression E;
struct hashmap_entry HME;
@@
- HME.hash = E;
+ hashmap_entry_init(&HME, E);

@@
identifier f !~ "^hashmap_entry_init$";
expression E;
struct hashmap_entry *HMEP;
@@
  f(...) {<...
- HMEP->hash = E;
+ hashmap_entry_init(HMEP, E);
  ...>}
back to top