February 13, 2016
- Add cylinder shape for databases.
+ - Free installed plugins
September 9, 2014
- Add plain shape for use with HTML-like labels.
August 12, 2014
{
GVG_t *gvg, *gvg_next;
gvplugin_package_t *package, *package_next;
+ gvplugin_available_t *api, *api_next;
+
+#define ELEM(x) +1
+ /* See gvcext.h for APIS and gvcint.h for an example usage of "+1"
+ to get the number of APIs. */
+ unsigned int num_apis = APIS, i;
+#undef ELEM
emit_once_reset();
gvg_next = gvc->gvgs;
if (gvc->input_filenames)
free(gvc->input_filenames);
textfont_dict_close(gvc);
+ for (i = 0; i != num_apis; ++i) {
+ for (api = gvc->apis[i]; api != NULL; api = api_next) {
+ api_next = api->next;
+ free(api);
+ }
+ }
free(gvc);
return (graphviz_errors + agerrors());
}