mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-18 22:31:36 +00:00
No more uninitialized
This commit is contained in:
parent
9841240aab
commit
cc8558025b
1 changed files with 6 additions and 7 deletions
13
correct.c
13
correct.c
|
@ -467,13 +467,12 @@ static char *correct_maximum(correct_trie_t* table, char **array, size_t rows) {
|
|||
* add to the dictonary.
|
||||
*/
|
||||
char *correct_str(correct_trie_t* table, const char *ident) {
|
||||
char **e1;
|
||||
char **e2;
|
||||
char *e1ident;
|
||||
char *e2ident;
|
||||
|
||||
size_t e1rows = 0;
|
||||
size_t e2rows = 0;
|
||||
char **e1 = NULL;
|
||||
char **e2 = NULL;
|
||||
char *e1ident = NULL;
|
||||
char *e2ident = NULL;
|
||||
size_t e1rows = 0;
|
||||
size_t e2rows = 0;
|
||||
|
||||
correct_pool_new();
|
||||
|
||||
|
|
Loading…
Reference in a new issue