From 25c3d4cc3bd800d5866a54fc0c6bc4f792971a11 Mon Sep 17 00:00:00 2001 From: GDR! Date: Tue, 7 Jul 2015 19:22:40 +0200 Subject: [PATCH] CID 122503 (#1 of 1): Missing return statement (MISSING_RETURN)1. missing_return: Arriving at the end of a function without returning a value. --- main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.c b/main.c index ca52f82..492e4f1 100644 --- a/main.c +++ b/main.c @@ -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)