Skip to content
Snippets Groups Projects
Commit 105aafbc authored by Jim's avatar Jim
Browse files

Fix a NULL pointer deference

Also, fixed an issue with the new conversion shader not compiling
properly on some video devices
parent f5fc9e7d
No related branches found
No related tags found
No related merge requests found
...@@ -108,12 +108,12 @@ float4 PSPlanar420(VertInOut vert_in) : TARGET ...@@ -108,12 +108,12 @@ float4 PSPlanar420(VertInOut vert_in) : TARGET
sample_pos[3] = float2(ch_u + width_i2, ch_v); sample_pos[3] = float2(ch_u + width_i2, ch_v);
} }
float4x4 out_val = { float4x4 out_val = float4x4(
image.Sample(def_sampler, sample_pos[0]), image.Sample(def_sampler, sample_pos[0]),
image.Sample(def_sampler, sample_pos[1]), image.Sample(def_sampler, sample_pos[1]),
image.Sample(def_sampler, sample_pos[2]), image.Sample(def_sampler, sample_pos[2]),
image.Sample(def_sampler, sample_pos[3]) image.Sample(def_sampler, sample_pos[3])
}; );
out_val = transpose(out_val); out_val = transpose(out_val);
......
...@@ -582,8 +582,9 @@ effect_t gs_create_effect(const char *effect_string, const char *filename, ...@@ -582,8 +582,9 @@ effect_t gs_create_effect(const char *effect_string, const char *filename,
ep_init(&parser); ep_init(&parser);
success = ep_parse(&parser, effect, effect_string, filename); success = ep_parse(&parser, effect, effect_string, filename);
if (!success) { if (!success) {
*error_string = error_data_buildstring( if (error_string)
&parser.cfp.error_list); *error_string = error_data_buildstring(
&parser.cfp.error_list);
effect_destroy(effect); effect_destroy(effect);
effect = NULL; effect = NULL;
} }
......
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