gplugin/gplugin

Clean up a leak in test-native-loader.c
bugfix/valgrind-catchup
2020-03-09, Gary Kramlich
566a52ac82ce
Parents 38dac950aaaf
Children 59cd9964eace
Clean up a leak in test-native-loader.c
--- a/gplugin/tests/test-native-loader.c Mon Mar 09 21:30:26 2020 -0500
+++ b/gplugin/tests/test-native-loader.c Mon Mar 09 21:33:40 2020 -0500
@@ -49,6 +49,8 @@
/* now attempt to load the dependent plugin, it's supposed to fail */
g_assert_false(gplugin_manager_load_plugin(plugin, &error));
+ g_assert_error(error, GPLUGIN_DOMAIN, 0);
+ g_error_free(error);
}
/******************************************************************************