diff options
author | aap <aap@papnet.eu> | 2020-12-21 13:33:35 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-12-21 13:33:35 +0100 |
commit | b5749963345d763de4f06dfa154d940c7ca3e6ab (patch) | |
tree | 068181804b86b0cc3417534842cd66f3b5797eb3 | |
parent | adcfb30d7d7ca7c0cf8e07f5411a9e821f30dbe8 (diff) |
fix sizeof
-rw-r--r-- | src/core/re3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp index 3f5e8f7d..d51e50ba 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -421,7 +421,7 @@ void CTweakVars::Add(CTweakVar *var) TweakVarsListSize = 0; } if(TweakVarsListSize > 63) - TweakVarsList = (CTweakVar**) realloc(TweakVarsList, (TweakVarsListSize + 1) * sizeof(var)); + TweakVarsList = (CTweakVar**) realloc(TweakVarsList, (TweakVarsListSize + 1) * sizeof(*var)); TweakVarsList[TweakVarsListSize++] = var; // TweakVarsList.push_back(var); |