mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-04-14 07:40:48 +02: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;
|
Cell c;
|
||||||
|
|
||||||
if (argv[i]) {
|
if (argv[i]) {
|
||||||
c.data = argv[i];
|
c.data = String::utf8(argv[i]);
|
||||||
} else {
|
} else {
|
||||||
c.null = true;
|
c.null = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user