Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
82169ba6
Commit
82169ba6
authored
Mar 30, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imem: don't pass data pointer through MRL either
parent
e1a6df96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/access/imem.c
modules/access/imem.c
+5
-5
No files found.
modules/access/imem.c
View file @
82169ba6
...
@@ -227,16 +227,16 @@ static int Open(vlc_object_t *object)
...
@@ -227,16 +227,16 @@ static int Open(vlc_object_t *object)
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
/* Now we can parse the MRL (get/release must not be parsed to avoid
* security risks) */
if
(
*
demux
->
psz_path
)
ParseMRL
(
demux
);
tmp
=
var_CreateGetString
(
demux
,
"imem-data"
);
tmp
=
var_CreateGetString
(
demux
,
"imem-data"
);
if
(
tmp
)
if
(
tmp
)
sys
->
source
.
data
=
(
void
*
)(
intptr_t
)
strtoll
(
tmp
,
NULL
,
0
);
sys
->
source
.
data
=
(
void
*
)(
intptr_t
)
strtoll
(
tmp
,
NULL
,
0
);
free
(
tmp
);
free
(
tmp
);
/* Now we can parse the MRL (get/release must not be parsed to avoid
* security risks) */
if
(
*
demux
->
psz_path
)
ParseMRL
(
demux
);
msg_Dbg
(
demux
,
"Using get(%p) release(%p) and data(%p)"
,
msg_Dbg
(
demux
,
"Using get(%p) release(%p) and data(%p)"
,
sys
->
source
.
get
,
sys
->
source
.
release
,
sys
->
source
.
data
);
sys
->
source
.
get
,
sys
->
source
.
release
,
sys
->
source
.
data
);
...
...
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