fix lock recursion (on eg windows)
This commit is contained in:
parent
35a0d97170
commit
a5ec166794
@ -154,10 +154,14 @@ void ChatGui4::setClipboardData(std::vector<std::string> mime_types, std::shared
|
|||||||
|
|
||||||
std::vector<const char*> tmp_mimetype_list;
|
std::vector<const char*> tmp_mimetype_list;
|
||||||
|
|
||||||
std::lock_guard lg{_set_clipboard_data_mutex};
|
{
|
||||||
for (const auto& mime_type : mime_types) {
|
std::lock_guard lg{_set_clipboard_data_mutex};
|
||||||
tmp_mimetype_list.push_back(mime_type.data());
|
for (const auto& mime_type : mime_types) {
|
||||||
_set_clipboard_data[mime_type] = data;
|
tmp_mimetype_list.push_back(mime_type.data());
|
||||||
|
_set_clipboard_data[mime_type] = data;
|
||||||
|
}
|
||||||
|
|
||||||
|
// release lock, since on some platforms the callback is called immediatly
|
||||||
}
|
}
|
||||||
|
|
||||||
SDL_SetClipboardData(clipboard_callback, nullptr, this, tmp_mimetype_list.data(), tmp_mimetype_list.size());
|
SDL_SetClipboardData(clipboard_callback, nullptr, this, tmp_mimetype_list.data(), tmp_mimetype_list.size());
|
||||||
|
Loading…
Reference in New Issue
Block a user