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
61b927af
Commit
61b927af
authored
May 23, 2018
by
Ronan
Browse files
fix(MainDb): read is blacklisted by soci, use read_from_start instead on Windows
parent
82f19505
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/db/main-db.cpp
View file @
61b927af
...
...
@@ -91,7 +91,7 @@ static inline vector<char> blobToVector (soci::blob &in) {
if
(
!
len
)
return
vector
<
char
>
();
vector
<
char
>
out
(
len
);
in
.
read
(
0
,
&
out
[
0
],
len
);
in
.
read
_from_start
(
&
out
[
0
],
len
);
return
out
;
}
...
...
Erwan Croze
👋🏻
@erwan.croze
mentioned in commit
63732921
·
Jun 01, 2018
mentioned in commit
63732921
mentioned in commit 63732921f9f113c99578dfd71bb249d8c0422423
Toggle commit list
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