~connman-maintainers/connman/head

Viewing all changes in revision 6219.

  • Committer: Patrik Flykt
  • Author(s): Daniel Wagner
  • Date: 2013-08-07 06:46:54 UTC
  • Revision ID: git-v1:bd99aaa74d1c627d43353ed0ae77b72e1e2bc8e6
core: Do not compare expression against NULL

This patch generate via coccinelle with:

@ disable is_null,isnt_null1 @
expression E;
@@

(
- E == NULL
+ !E
|
- E != NULL
+ E
)

expand all expand all

Show diffs side-by-side

added added

removed removed

Lines of Context: