mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 08:09:19 +02:00
Init variables, fix #26
This commit is contained in:
parent
63fa76e182
commit
91178e7066
|
@ -41,6 +41,7 @@ START_TEST(test_inline_dotify)
|
||||||
char temp[1024];
|
char temp[1024];
|
||||||
char *b;
|
char *b;
|
||||||
|
|
||||||
|
i = 0;
|
||||||
while (dottests[i].a) {
|
while (dottests[i].a) {
|
||||||
memset(temp, 0, sizeof(temp));
|
memset(temp, 0, sizeof(temp));
|
||||||
strcpy(temp, dottests[i].a);
|
strcpy(temp, dottests[i].a);
|
||||||
|
@ -60,6 +61,7 @@ START_TEST(test_inline_undotify)
|
||||||
char temp[1024];
|
char temp[1024];
|
||||||
char *b;
|
char *b;
|
||||||
|
|
||||||
|
i = 0;
|
||||||
while (dottests[i].a) {
|
while (dottests[i].a) {
|
||||||
memset(temp, 0, sizeof(temp));
|
memset(temp, 0, sizeof(temp));
|
||||||
strcpy(temp, dottests[i].b);
|
strcpy(temp, dottests[i].b);
|
||||||
|
|
Loading…
Reference in New Issue