Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
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
Options
Browse Files
Download
Email Patches
Plain Diff
Don't dereference ctx->priv if it hasn't been setup correctly.
parent
eafcf918
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp8/vp8_dx_iface.c
vp8/vp8_dx_iface.c
+1
-1
No files found.
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