public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: rtl8192u: r8192U_core.c:  Cleaning up uninitialized variables
@ 2014-06-01 13:28 Rickard Strandqvist
  2014-06-01 20:37 ` Dan Carpenter
  0 siblings, 1 reply; 5+ messages in thread
From: Rickard Strandqvist @ 2014-06-01 13:28 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Xenia Ragiadakou
  Cc: Rickard Strandqvist, Peter P Waskiewicz Jr, Ana Rey,
	Dan Carpenter, Teodora Baluta, Andrea Merello, devel,
	linux-kernel

There is a risk that the variable will be used without being initialized.

This was largely found by using a static code analysis program called cppcheck.

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
---
 drivers/staging/rtl8192u/r8192U_core.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c
index 1bb6143..b88fb6d 100644
--- a/drivers/staging/rtl8192u/r8192U_core.c
+++ b/drivers/staging/rtl8192u/r8192U_core.c
@@ -4695,9 +4695,10 @@ static void rtl8192_rx_nomal(struct sk_buff *skb)
 	u32  PacketShiftBytes = 0;
 	rx_desc_819x_usb_aggr_subframe *RxDescr = NULL;
 	u8  PaddingBytes = 0;
+#ifdef USB_RX_AGGREGATION_SUPPORT
 	//add just for testing
-	u8   testing;
-
+	u8   testing = 0;
+#endif
 #endif
 
 	/* 20 is for ps-poll */
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-06-02 20:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-01 13:28 [PATCH] staging: rtl8192u: r8192U_core.c: Cleaning up uninitialized variables Rickard Strandqvist
2014-06-01 20:37 ` Dan Carpenter
2014-06-01 21:05   ` Rickard Strandqvist
2014-06-02  7:39     ` Dan Carpenter
2014-06-02 20:16       ` Rickard Strandqvist

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox