tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

uncalloc.cocci (123B)


      1 
      2 @@
      3 expression a;
      4 @@
      5 - tor_calloc(1, a)
      6 + tor_malloc_zero(a)
      7 
      8 @@
      9 expression a;
     10 @@
     11 - tor_calloc(a, 1)
     12 + tor_malloc_zero(a)
     13