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
63732921
Commit
63732921
authored
May 30, 2018
by
Simon Morlat
Browse files
Revert "fix(MainDb): read is blacklisted by soci, use read_from_start instead on Windows"
This reverts commit
61b927af
.
parent
2857b8fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/db/main-db.cpp
src/db/main-db.cpp
+1
-1
No files found.
src/db/main-db.cpp
View file @
63732921
...
...
@@ -91,7 +91,7 @@ static inline vector<char> blobToVector (soci::blob &in) {
if
(
!
len
)
return
vector
<
char
>
();
vector
<
char
>
out
(
len
);
in
.
read
_from_start
(
&
out
[
0
],
len
);
in
.
read
(
0
,
&
out
[
0
],
len
);
return
out
;
}
...
...
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