1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
2000-01-09 Matias Mutchinick <mmb@quetzal.innsz.mx>
* src/gtrans_ifase_plugin.c (gtrans_ifase_plugin_open):
Fixed memory leak. Free @ifase_plugin when error, then return NULL.
2000-01-01 Matias Mutchinick <mmb@quetzal.innsz.mx>
* src/gtrans_ifase_result.c:
New functions :
gtrans_ifase_result_remove_row
gtrans_ifase_result_append_row
gtrans_ifase_result_replace_row
1999-12-11 Matias Mutchinick <mmb@quetzal.innsz.mx>
* src/gtrans_ifase_result.c (gtrans_ifase_result_error_msg):
New function, returns the error message.
1999-12-08 Matias Mutchinick <mmb@quetzal.innsz.mx>
* src/gtrans_ifase_plugin.c:
Separated gtrans_ifase_plugin_list in three functions.
gtrans_ifase_plugin_open : open a plugin by it's filename.
gtrans_ifase_plugin_list : returns a GList of plugins found in a dir
( calls gtrans_ifase_plugin_open )
gtrans_ifase_plugin_search : searchs in a GList a plugin.
to avoid repeting them.
1999-12-08 Matias Mutchinick <mmb@quetzal.innsz.mx>
* src/gtrans_ifase_plugin.c (gtrans_ifase_plugin_list):
** New ** This file will take care of opening,
finding... plugins.
1999-12-06 Matias Mutchinick <mmb@quetzal.innsz.mx>
* src/gtrans_ifase_result.c (gtrans_ifase_result_free):
Added g_list_free ( res->rows ), that was missing for a long
time.
1999-12-06 Matias Mutchinick <mmb@quetzal.innsz.mx>
* src/gtrans_ifase_result.c (gtrans_ifase_result_fetch_row):
Removed the warning: g_return_val_if_fail( res->rows != NULL , NULL )
res->rows, is valid to be NULL, it just means that query was an
empty set of tupples.
|