ソースを参照

* Fix a buffer initialisation issue in the sortchars utility.

tags/v0.99.beta14
Sam Hocevar sam 16年前
コミット
abcc1ab766
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      tools/sortchars.c

+ 1
- 1
tools/sortchars.c ファイルの表示

@@ -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++)


読み込み中…
キャンセル
保存