瀏覽代碼

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


Loading…
取消
儲存