tor

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

test_assert_null.cocci (131B)


      1 @@
      2 expression * e;
      3 @@
      4 
      5 (
      6 - tt_assert(e != NULL)
      7 + tt_ptr_op(e, OP_NE, NULL)
      8 |
      9 - tt_assert(e == NULL)
     10 + tt_ptr_op(e, OP_EQ, NULL)
     11 )