Crash in copy_string
Windows 11 x64 libtorrent 2.0.10 msvc2019
Crashed in copy_string() because m_storage size too much.
What's the size of the vector? Do you restrict the alert queue size? Do you pop alerts regularly?
On a first screenshow you can see size 2147483637
Yes lt::settings_pack::alert_queue_size, std::numeric_limits
numeric_limits is a template. Is that a limit of 2 billions or 4 quintillions?
Either way, it's probably going to make you run out of memory
limit is int (i paste std::numeric_limits< int >::max() but in comment showed only std::numeric_limits::max()) memory 16gb
1 billion alerts will make you run out of memory unless you pop them at a higher rate than they're produced. I imagine you're not doing that.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.