Commit e8bba584 authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

msado15: Free recordset filter on close.

Introduced by commit 669107f6.
parent 9e5d54ea
...@@ -1205,6 +1205,8 @@ static void close_recordset( struct recordset *recordset ) ...@@ -1205,6 +1205,8 @@ static void close_recordset( struct recordset *recordset )
if ( recordset->row_set ) IRowset_Release( recordset->row_set ); if ( recordset->row_set ) IRowset_Release( recordset->row_set );
recordset->row_set = NULL; recordset->row_set = NULL;
VariantClear( &recordset->filter );
if (!recordset->fields) return; if (!recordset->fields) return;
col_count = get_column_count( recordset ); col_count = get_column_count( recordset );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment