Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
31dac3af
Commit
31dac3af
authored
Jun 28, 2016
by
Sylvain Berfini
🐮
Browse files
Enabled back VFS
parent
2933a53c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
coreapi/message_storage.c
coreapi/message_storage.c
+1
-2
No files found.
coreapi/message_storage.c
View file @
31dac3af
...
...
@@ -85,8 +85,7 @@ int _linphone_sqlite3_open(const char *db_file, sqlite3 **db) {
/*since we plug our vfs into sqlite, we convert to UTF-8.
* On Windows, the filename has to be converted back to windows native charset.*/
char
*
utf8_filename
=
utf8_convert
(
db_file
);
//ret = sqlite3_open_v2(utf8_filename, db, flags, LINPHONE_SQLITE3_VFS);
ret
=
sqlite3_open_v2
(
utf8_filename
,
db
,
flags
,
NULL
);
// Do not use VFS until all issues are resolved
ret
=
sqlite3_open_v2
(
utf8_filename
,
db
,
flags
,
LINPHONE_SQLITE3_VFS
);
ms_free
(
utf8_filename
);
if
(
ret
!=
SQLITE_OK
)
return
ret
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment