initialize variable to NULL to be safe against uninitialized usage

This commit is contained in:
jp9000 2013-10-17 00:36:32 -07:00
parent dfa2dc6eab
commit 6e6535d568

View File

@ -1338,7 +1338,7 @@ static inline bool ep_compile_pass_shader(struct effect_parser *ep,
struct dstr location;
struct darray used_params; /* struct dstr */
struct darray *pass_params; /* struct pass_shaderparam */
shader_t shader;
shader_t shader = NULL;
bool success = true;
dstr_init(&shader_str);