Skip to content

Commit

Permalink
CID 122500 (#1 of 1): Missing return statement (MISSING_RETURN)6.
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 25c3d4c commit f1826d2
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 @@ -394,6 +394,8 @@ int handle_request_tunnel_frame(protocol_frame *rcvd_frame)
}

free(hostname);

return 0;
}

/* Handle a TCP frame received from client */
Expand Down

0 comments on commit f1826d2

Please sign in to comment.