forked from organicmaps/organicmaps
Merge pull request #6271 from igrechuhin/cherry
[cherry] [MAPSME-4545] [ios] Fixed bookmarks export.
This commit is contained in:
commit
53edcbfe5c
1 changed files with 2 additions and 2 deletions
|
@ -415,10 +415,10 @@ extern NSString * const kBookmarkDeletedNotification = @"BookmarkDeletedNotifica
|
|||
[mailVC setSubject:L(@"share_bookmarks_email_subject")];
|
||||
|
||||
std::ifstream ifs(filePath.UTF8String);
|
||||
ifs.seekg(ifs.end);
|
||||
ifs.seekg(0, ifs.end);
|
||||
auto const size = ifs.tellg();
|
||||
std::vector<char> data(size);
|
||||
ifs.seekg(ifs.beg);
|
||||
ifs.seekg(0, ifs.beg);
|
||||
ifs.read(data.data(), size);
|
||||
ifs.close();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue