Re: Using coccinelle for (quick?) syntax fixing

2010-08-11 Thread Jean-Yves Migeon
On 10.08.2010 19:11, Matthias Drochner wrote: jeanyves.mig...@free.fr said: But the NULL deref fixes will go in eventually, and I will probably ask for a pull up too ;) But then... algo = esp_algorithm_lookup(sav-alg_enc); - if (!algo) { + if (algo == NULL) {

Re: Using coccinelle for (quick?) syntax fixing

2010-08-11 Thread Jean-Yves Migeon
On 10.08.2010 19:11, Matthias Drochner wrote: jeanyves.mig...@free.fr said: But the NULL deref fixes will go in eventually, and I will probably ask for a pull up too ;) But then... algo = esp_algorithm_lookup(sav-alg_enc); - if (!algo) { + if (algo == NULL) {