Add two more missing va_end.
parent
5a00bacfe2
commit
6c828030a7
|
|
@ -212,6 +212,8 @@ LLAvatarAppearanceDictionary::BakedEntry::BakedEntry(ETextureIndex tex_index,
|
|||
LLWearableType::EType t = (LLWearableType::EType)va_arg(argp,int);
|
||||
mWearables.push_back(t);
|
||||
}
|
||||
|
||||
va_end( argp ); // <FS:ND/> Needs to be freed when done.
|
||||
}
|
||||
|
||||
// static
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ struct InventoryEntry : public LLDictionaryEntry
|
|||
LLAssetType::EType t = (LLAssetType::EType)va_arg(argp,int);
|
||||
mAssetTypes.push_back(t);
|
||||
}
|
||||
va_end( argp ); // <FS:ND/> Needs to be freed when done.
|
||||
}
|
||||
|
||||
const std::string mHumanName;
|
||||
|
|
|
|||
Loading…
Reference in New Issue