Skip to content
Snippets Groups Projects
Commit 8f39cd1b authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-321

Checker: UNINIT_CTOR
Function: LLInitParam::ParamDescriptor::ParamDescriptor(...)
parent efe4ed28
No related branches found
No related tags found
No related merge requests found
...@@ -321,13 +321,13 @@ namespace LLInitParam ...@@ -321,13 +321,13 @@ namespace LLInitParam
typedef bool(*validation_func_t)(const Param*); typedef bool(*validation_func_t)(const Param*);
ParamDescriptor(param_handle_t p, ParamDescriptor(param_handle_t p,
merge_func_t merge_func, merge_func_t merge_func,
deserialize_func_t deserialize_func, deserialize_func_t deserialize_func,
serialize_func_t serialize_func, serialize_func_t serialize_func,
validation_func_t validation_func, validation_func_t validation_func,
inspect_func_t inspect_func, inspect_func_t inspect_func,
S32 min_count, S32 min_count,
S32 max_count) S32 max_count)
: mParamHandle(p), : mParamHandle(p),
mMergeFunc(merge_func), mMergeFunc(merge_func),
mDeserializeFunc(deserialize_func), mDeserializeFunc(deserialize_func),
...@@ -336,6 +336,7 @@ namespace LLInitParam ...@@ -336,6 +336,7 @@ namespace LLInitParam
mInspectFunc(inspect_func), mInspectFunc(inspect_func),
mMinCount(min_count), mMinCount(min_count),
mMaxCount(max_count), mMaxCount(max_count),
mGeneration(0),
mNumRefs(0) mNumRefs(0)
{} {}
......
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