branch Attitude Adjustment packages
[12.09/packages.git] / net / flow-tools / patches / 080-fix_uninitialized_var_in_flow_export.patch
1 diff --git a/src/flow-export.c b/src/flow-export.c
2 index 52ae4d2..22b0330 100644
3 --- a/src/flow-export.c
4 +++ b/src/flow-export.c
5 @@ -961,7 +961,7 @@ #endif /* PGSQL */
6  
7  int fmt_xfields_type(char *buf, u_int64 xfield)
8  {
9 -  int comma;
10 +  int comma = 0;
11  
12    buf[0] = 0;
13