mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Revert "fix(MainDb): read is blacklisted by soci, use read_from_start instead on Windows"
This reverts commit 61b927afc2.
This commit is contained in:
parent
2857b8fc11
commit
63732921f9
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue