Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
2add72d9
Commit
2add72d9
authored
Jun 07, 2010
by
Fredrik Söderquist
Committed by
John Koleszar
Jul 23, 2010
Browse files
Don't dereference ctx->priv if it hasn't been setup correctly.
parent
eafcf918
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/vp8_dx_iface.c
View file @
2add72d9
...
...
@@ -528,7 +528,7 @@ static vpx_codec_err_t vp8_xma_set_mmap(vpx_codec_ctx_t *ctx,
done
=
1
;
if
(
ctx
->
priv
->
alg_priv
)
if
(
!
res
&&
ctx
->
priv
->
alg_priv
)
{
for
(
i
=
0
;
i
<
NELEMENTS
(
vp8_mem_req_segs
);
i
++
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment