Skip to content

Commit

Permalink
fixing coverity found defects - logical fix in ul callback check type…
Browse files Browse the repository at this point in the history
…, null dereference

(cherry picked from commit aeedb7d)

Conflicts:
	modules/dispatcher/dispatcher.c
  • Loading branch information
ph4r05 authored and liviuchircu committed Jan 14, 2016
1 parent 50737ff commit a152bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/usrloc/ul_callback.h
Expand Up @@ -63,7 +63,7 @@ extern struct ulcb_head_list* ulcb_list;


#define exists_ulcb_type(_types_) \
( (ulcb_list->reg_types)|(_types_) )
( (ulcb_list->reg_types)&(_types_) )


int init_ulcb_list();
Expand Down

0 comments on commit a152bdf

Please sign in to comment.