[PATCH -tip] Documentation/accounting/getdelays.c intialize thevariable before using it

From: Jaswinder Singh Rajput
Date: Wed May 20 2009 - 01:15:32 EST



May be in some cases cmd_type will be used uninitialized.

Also fixes compilation warning:

CC [M] Documentation/DocBook/procfs_example.o
Documentation/accounting/getdelays.c: In function âmainâ:
Documentation/accounting/getdelays.c:249: warning: âcmd_typeâ may be used uninitialized in this function

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@xxxxxxxxx>
---
Documentation/accounting/getdelays.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Documentation/accounting/getdelays.c b/Documentation/accounting/getdelays.c
index 7ea2311..36aae3b 100644
--- a/Documentation/accounting/getdelays.c
+++ b/Documentation/accounting/getdelays.c
@@ -246,7 +246,7 @@ void print_ioacct(struct taskstats *t)

int main(int argc, char *argv[])
{
- int c, rc, rep_len, aggr_len, len2, cmd_type;
+ int c, rc, rep_len, aggr_len, len2, cmd_type = TASKSTATS_CMD_ATTR_UNSPEC;
__u16 id;
__u32 mypid;

--
1.6.1.1



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/