Add two more missing va_end.

master
Nicky 2015-04-20 14:52:52 +02:00
parent 5a00bacfe2
commit 6c828030a7
2 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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;