diff options
| author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2014-03-26 11:08:36 +0200 | 
|---|---|---|
| committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2014-03-26 11:08:36 +0200 | 
| commit | ffbf11e4430041d1df17e21e70d40348467a8d9d (patch) | |
| tree | d561b35bc329260083b65248e863d86dee930f46 /indra | |
| parent | bb0515db318ee4e528da75160e982b38dd9b4b5f (diff) | |
MAINT-2018 FIXED Viewer crashes when copying and pasting an empty outfit folder
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/llinventorybridge.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 101b16b027..75a4c22d33 100755 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -3241,7 +3241,7 @@ void LLFolderBridge::pasteFromClipboard()  			{  				if (move_is_into_current_outfit || move_is_into_outfit)  				{ -					if (can_move_to_outfit(item, move_is_into_current_outfit)) +					if (item && can_move_to_outfit(item, move_is_into_current_outfit))  					{  						dropToOutfit(item, move_is_into_current_outfit);  					} | 
