Revision 30f264c2
Added by David Sorber over 9 years ago
| software/sqlite_poc/DBManager.h | ||
|---|---|---|
|
output_vector->push_back(result_row);
|
||
|
}
|
||
|
|
||
|
sqlite3_finalize(sqlite_statement);
|
||
|
|
||
|
return output_vector;
|
||
|
}
|
||
|
|
||
Correcting memory leak cause by not calling sqlite3_finalize.