Messages in this thread Patch in this message |  | | | From | Chris Peterson <> | | Subject | Re: [PATCH] fix uninitialized variable warning in crypto/async_tx/async_tx.c (fixed?) | | Date | Sun, 27 Apr 2008 22:04:33 -0700 |
oops, sorry. Let me try this again.
chris
---
diff -Naur linux-2.6.25-git7/crypto/async_tx/async_tx.c linux-2.6.25-
git7+patch/crypto/async_tx/async_tx.c
--- linux-2.6.25-git7/crypto/async_tx/async_tx.c 2008-04-25
22:46:24.000000000 -0700
+++ linux-2.6.25-git7+patch/crypto/async_tx/async_tx.c 2008-04-25
23:39:44.000000000 -0700
@@ -596,8 +596,11 @@
device = NULL;
tx = device ? device->device_prep_dma_interrupt
(chan, 0) : NULL;
- } else
+ } else {
+ chan = NULL;
+ device = NULL;
tx = NULL;
+ }
if (tx) {
pr_debug("%s: (async)\n", __func__);
|  |