mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-21 16:37:20 +01:00
Fix getting utf-8 texts from Sqlite3QueryResult.
This commit is contained in:
parent
f377181035
commit
5025e3f4b6
@ -49,7 +49,7 @@ int Sqlite3QueryResult::run_query_finished(void *data, int argc, char **argv, ch
|
||||
Cell c;
|
||||
|
||||
if (argv[i]) {
|
||||
c.data = argv[i];
|
||||
c.data = String::utf8(argv[i]);
|
||||
} else {
|
||||
c.null = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user