Bug 515484 – Variable is initialized twice
authorDominic Lachowicz <domlachowicz@gmail.com>
Sun, 10 Feb 2008 21:43:21 +0000 (21:43 +0000)
committerBehdad Esfahbod <behdad@src.gnome.org>
Sun, 10 Feb 2008 21:43:21 +0000 (21:43 +0000)
2008-02-09  Dominic Lachowicz <domlachowicz@gmail.com>

        Bug 515484 – Variable is initialized twice

        * pango/pangofc-fontmap.c (_pango_fc_font_map_fc_to_coverage):
        Variable was initialized twice.

svn path=/trunk/; revision=2564

ChangeLog
pango/pangofc-fontmap.c

index 845ad79..ab01a1a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-02-09  Dominic Lachowicz <domlachowicz@gmail.com>
+
+       Bug 515484 – Variable is initialized twice
+
+       * pango/pangofc-fontmap.c (_pango_fc_font_map_fc_to_coverage):
+       Variable was initialized twice.
+       
 2008-02-08  Behdad Esfahbod  <behdad@gnome.org>
 
        Bug 504810 – Samvruthokaram (combination of U+0D41 and U+0D4D) is not
index adc8c79..030e3e9 100644 (file)
@@ -1379,7 +1379,7 @@ _pango_fc_font_map_fc_to_coverage (FcCharSet *charset)
          FcChar32  bits = map[i];
          FcChar32  base = ucs4 + i * 32;
          int b = 0;
-         bits = map[i];
+
          while (bits)
            {
              if (bits & 1)