Fixed memory leaks in tests

Esse commit está contido em:
John Jones 2016-12-12 04:58:53 -05:00
commit 6907369aaf

Ver arquivo

@ -72,6 +72,8 @@ int test_complex_protobuf() {
return 0;
}
Test3_free(test3);
Test3_free(results);
return 1;
}
@ -154,6 +156,8 @@ int test_write_simple() {
return 0;
}
Test1_free(results);
return 1;
}