--- a/adb/Android.mk 2018-04-25 23:23:29.527198350 +0200 +++ b/adb/Android.mk 2018-04-25 23:24:25.558632573 +0200 @@ -226,7 +226,7 @@ LOCAL_SRC_FILES := test_track_devices.cpp LOCAL_SANITIZE := $(adb_host_sanitize) LOCAL_SHARED_LIBRARIES := libbase -LOCAL_STATIC_LIBRARIES := libadb libcrypto_static libcutils +LOCAL_STATIC_LIBRARIES := libadb libbase libcrypto_static libcutils LOCAL_LDLIBS += -lrt -ldl -lpthread include $(BUILD_HOST_EXECUTABLE) endif @@ -278,6 +278,7 @@ LOCAL_SANITIZE := $(adb_host_sanitize) LOCAL_STATIC_LIBRARIES := \ libadb \ + libcutils \ libbase \ libcrypto_static \ libdiagnose_usb \ --- a/adb/sysdeps_test.cpp 2018-05-09 23:58:46.583163684 +0200 +++ b/adb/sysdeps_test.cpp 2018-05-09 23:56:41.356544648 +0200 @@ -17,6 +17,8 @@ #include #include #include +#include +#include #include "adb_io.h" #include "sysdeps.h" ed'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
blob: 2a1c81648bf66584b6b68ac36d16ebe63eaa7bce (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From 5ca6382fe8adb5bc436a6d873c8b86c69d5abfd1 Mon Sep 17 00:00:00 2001
From: Sergey Poznyakoff <gray@gnu.org>
Date: Sun, 13 Sep 2020 14:43:46 +0300
Subject: [PATCH] Fix uninitialized variable in readmsg

* readmsg/readmsg.c (main): Initialize weedc.
---
 readmsg/readmsg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/readmsg/readmsg.c b/readmsg/readmsg.c
index 9f305bb9c..3a9f420db 100644
--- a/readmsg/readmsg.c
+++ b/readmsg/readmsg.c
@@ -466,7 +466,7 @@ main (int argc, char **argv)
   mu_mailbox_t mbox = NULL;
   struct mu_wordsplit ws;
   char **weedv;
-  int weedc;
+  int weedc = 0;
   int unix_header = 0;
   
   /* Native Language Support */
-- 
2.28.0