Browse Source

* Fix a buffer initialisation issue in the sortchars utility.

tags/v0.99.beta14
Sam Hocevar sam 16 years ago
parent
commit
abcc1ab766
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tools/sortchars.c

+ 1
- 1
tools/sortchars.c View File

@@ -89,7 +89,7 @@ int main(int argc, char *argv[])
for(i = 0x20; i < GLYPHS; i++)
for(y = 0; y < DY; y++)
for(x = 0; x < DX; x++)
total[GLYPHS][x][y] = 0;
total[i][x][y] = 0;

/* Draw all glyphs and count their pixels */
for(i = 0x20; i < GLYPHS; i++)


Loading…
Cancel
Save