We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06526cf commit 9d3852bCopy full SHA for 9d3852b
src/engine/script_p.h
@@ -19,16 +19,16 @@ struct ScriptPrivate
19
ScriptPrivate(Target *target, IEngine *engine);
20
ScriptPrivate(const ScriptPrivate &) = delete;
21
22
- unsigned int *bytecode;
+ unsigned int *bytecode = nullptr;
23
std::vector<unsigned int> bytecodeVector;
24
25
- Target *target;
26
- IEngine *engine;
+ Target *target = nullptr;
+ IEngine *engine = nullptr;
27
28
unsigned int **procedures = nullptr;
29
std::vector<unsigned int *> proceduresVector;
30
31
- BlockFunc *functions;
+ BlockFunc *functions = nullptr;
32
std::vector<BlockFunc> functionsVector;
33
34
const Value *constValues = nullptr;
0 commit comments