aboutsummaryrefslogtreecommitdiffstats
path: root/src/vcl
diff options
context:
space:
mode:
authorJieqiang Wang <jieqiang.wang@arm.com>2023-07-24 16:52:06 +0800
committerDamjan Marion <dmarion@0xa5.net>2023-11-07 10:58:50 +0000
commit76d14b797c05aa5e7ac9aa9ee99e6b03ee0837db (patch)
treecd438051ace2e702cc479f5fc0207d9c947b4e02 /src/vcl
parente73c731ad8890d1b64c55e3e9dfb9fc8529624f9 (diff)
misc: silence -Wmaybe-uninitialized warnings
GCC 12 complains about such errors while the code itself looks good. Type: fix Signed-off-by: Jieqiang Wang <jieqiang.wang@arm.com> Change-Id: I021719fdbf7d9bd93a12eac76aeac8cbca13a810
Diffstat (limited to 'src/vcl')
-rw-r--r--src/vcl/ldp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vcl/ldp.c b/src/vcl/ldp.c
index 79e7cf3ee32..0338ce65a21 100644
--- a/src/vcl/ldp.c
+++ b/src/vcl/ldp.c
@@ -1894,7 +1894,7 @@ recvmsg (int fd, struct msghdr * msg, int flags)
{
struct iovec *iov = msg->msg_iov;
ssize_t max_deq, total = 0;
- int i, rv;
+ int i, rv = 0;
max_deq = vls_attr (vlsh, VPPCOM_ATTR_GET_NREAD, 0, 0);
if (!max_deq)