Skip to content
Snippets Groups Projects
Commit 23706afa authored by Andrew A. de Laix's avatar Andrew A. de Laix
Browse files

Fix EXT-8039: change from std::vector to std::list to permit appending during...

Fix EXT-8039: change from std::vector to std::list to permit appending during iteration and prevent random crashes.
parent f0318bf6
No related branches found
No related tags found
No related merge requests found
......@@ -84,7 +84,7 @@ class LLViewerMedia
static const char* SHOW_MEDIA_WITHIN_PARCEL_SETTING;
static const char* SHOW_MEDIA_OUTSIDE_PARCEL_SETTING;
typedef std::vector<LLViewerMediaImpl*> impl_list;
typedef std::list<LLViewerMediaImpl*> impl_list;
typedef std::map<LLUUID, LLViewerMediaImpl*> impl_id_map;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment