Skip to content

Commit

Permalink
tracer: complete fix for previous crash
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Apr 23, 2019
1 parent f0dae11 commit daaf390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tracer/tracer.c
Expand Up @@ -3166,7 +3166,7 @@ static int api_is_id_traced(int id)
if (!info)
return 0;
trace_instance_p instance = GET_TRACER_CONTEXT->instances;
while (info) {
while (instance) {
if (is_id_traced( id, instance))
return 1;
instance = instance->next;
Expand Down

0 comments on commit daaf390

Please sign in to comment.