diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-04-28 12:31:14 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-04-29 10:30:43 +0300 |
commit | 40b275b4a7ff68a53f09da28958c132050cc674a (patch) | |
tree | f362289a60df8d7d1950ad478d6f71f00fbd1fee /build | |
parent | 27086a30157d06c4d690d0f77e20eec17883aa00 (diff) | |
download | rpm-40b275b4a7ff68a53f09da28958c132050cc674a.tar.gz rpm-40b275b4a7ff68a53f09da28958c132050cc674a.tar.bz2 rpm-40b275b4a7ff68a53f09da28958c132050cc674a.zip |
Fix a few uninitialized variable cases found by clang-analyzer
Diffstat (limited to 'build')
-rw-r--r-- | build/rpmfc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/rpmfc.c b/build/rpmfc.c index af67ad3b5..e76363af7 100644 --- a/build/rpmfc.c +++ b/build/rpmfc.c @@ -726,7 +726,7 @@ rpmRC rpmfcApply(rpmfc fc) int dix; int ix; int i; - int xx; + int xx = 0; /* Generate package and per-file dependencies. */ for (fc->ix = 0; fc->fn[fc->ix] != NULL; fc->ix++) { |