summaryrefslogtreecommitdiff
path: root/modules/mono/glue/arguments_vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/arguments_vector.h')
-rw-r--r--modules/mono/glue/arguments_vector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/arguments_vector.h b/modules/mono/glue/arguments_vector.h
index 7c991d87a4..4405809887 100644
--- a/modules/mono/glue/arguments_vector.h
+++ b/modules/mono/glue/arguments_vector.h
@@ -37,7 +37,7 @@ template <typename T, int POOL_SIZE = 5>
struct ArgumentsVector {
private:
T pool[POOL_SIZE];
- T *_ptr;
+ T *_ptr = nullptr;
int size;
ArgumentsVector() = delete;