Initialize struct before use

This commit is contained in:
Rene Kita
2022-02-20 11:14:54 +01:00
parent c5c63a1a3d
commit d3ea4b33f1
+1 -1
View File
@@ -1524,7 +1524,7 @@ check_table_height(struct table *t)
short maxcell; short maxcell;
short size; short size;
int *height; int *height;
} cell; } cell = {0};
int space = 0; int space = 0;
cell.size = 0; cell.size = 0;