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
31c99363
Commit
31c99363
authored
May 20, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use correct datatype
parent
7d7fbb05
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/demux/mp4/drms.c
modules/demux/mp4/drms.c
+2
-2
No files found.
modules/demux/mp4/drms.c
View file @
31c99363
...
...
@@ -334,7 +334,7 @@ int drms_init( void *_p_drms, uint32_t i_type,
break
;
case
FOURCC_name
:
p_drms
->
p_name
=
strdup
(
p_info
);
p_drms
->
p_name
=
(
uint8_t
*
)
strdup
(
(
char
*
)
p_info
);
if
(
p_drms
->
p_name
==
NULL
)
{
...
...
@@ -354,7 +354,7 @@ int drms_init( void *_p_drms, uint32_t i_type,
}
InitMD5
(
&
md5
);
AddMD5
(
&
md5
,
p_drms
->
p_name
,
strlen
(
p_drms
->
p_name
)
);
AddMD5
(
&
md5
,
p_drms
->
p_name
,
strlen
(
(
char
*
)
p_drms
->
p_name
)
);
AddMD5
(
&
md5
,
p_drms
->
p_iviv
,
16
);
EndMD5
(
&
md5
);
...
...
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