diff options
author | Andrew A. de Laix <alain@lindenlab.com> | 2010-06-24 17:36:59 -0700 |
---|---|---|
committer | Andrew A. de Laix <alain@lindenlab.com> | 2010-06-24 17:36:59 -0700 |
commit | 23706afa6431e34f821baa925ada220b06833a97 (patch) | |
tree | 451fe93c193beb49360995ea94ad01982663a1d9 /indra | |
parent | f0318bf68ef01fcf011da97073b75c3ddc29414d (diff) |
Fix EXT-8039: change from std::vector to std::list to permit appending during iteration and prevent random crashes.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewermedia.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermedia.h b/indra/newview/llviewermedia.h index 8626f4469e..ef9c07c6c7 100644 --- a/indra/newview/llviewermedia.h +++ b/indra/newview/llviewermedia.h @@ -84,7 +84,7 @@ public: 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; |