Skip to content

Commit

Permalink
CID 122503 (#1 of 1): Missing return statement (MISSING_RETURN)1.
Browse files Browse the repository at this point in the history
missing_return: Arriving at the end of a function without returning a
value.
  • Loading branch information
gjedeer committed Jul 7, 2015
1 parent 92b0372 commit 25c3d4c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,8 @@ int handle_ping_frame(protocol_frame *rcvd_frame)
frame->data_length = rcvd_frame->data_length;

send_frame(frame, data);

return 0;
}

int handle_request_tunnel_frame(protocol_frame *rcvd_frame)
Expand Down

0 comments on commit 25c3d4c

Please sign in to comment.