Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
bbbebb32
Commit
bbbebb32
authored
Feb 25, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use calloc when appropriate (cdrom.c)
parent
f82668b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
modules/access/vcd/cdrom.c
modules/access/vcd/cdrom.c
+10
-9
No files found.
modules/access/vcd/cdrom.c
View file @
bbbebb32
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_access.h>
#include <vlc_access.h>
#include <limits.h>
#ifdef HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
# include <unistd.h>
# include <unistd.h>
...
@@ -208,7 +209,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
...
@@ -208,7 +209,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
if
(
pp_sectors
)
if
(
pp_sectors
)
{
{
*
pp_sectors
=
malloc
(
(
i_tracks
+
1
)
*
sizeof
(
**
pp_sectors
)
);
*
pp_sectors
=
calloc
(
i_tracks
+
1
,
sizeof
(
**
pp_sectors
)
);
if
(
*
pp_sectors
==
NULL
)
if
(
*
pp_sectors
==
NULL
)
return
0
;
return
0
;
memcpy
(
*
pp_sectors
,
p_vcddev
->
p_sectors
,
memcpy
(
*
pp_sectors
,
p_vcddev
->
p_sectors
,
...
@@ -244,7 +245,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
...
@@ -244,7 +245,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
CDTOCDescriptor
*
pTrackDescriptors
;
CDTOCDescriptor
*
pTrackDescriptors
;
u_char
track
;
u_char
track
;
*
pp_sectors
=
malloc
(
(
i_tracks
+
1
)
*
sizeof
(
**
pp_sectors
)
);
*
pp_sectors
=
calloc
(
i_tracks
+
1
,
sizeof
(
**
pp_sectors
)
);
if
(
*
pp_sectors
==
NULL
)
if
(
*
pp_sectors
==
NULL
)
{
{
darwin_freeTOC
(
pTOC
);
darwin_freeTOC
(
pTOC
);
...
@@ -349,7 +350,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
...
@@ -349,7 +350,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
((
unsigned
int
)
p_tocheader
[
1
]
<<
8
);
((
unsigned
int
)
p_tocheader
[
1
]
<<
8
);
p_fulltoc
=
malloc
(
i_toclength
);
p_fulltoc
=
malloc
(
i_toclength
);
*
pp_sectors
=
malloc
(
(
i_tracks
+
1
)
*
sizeof
(
**
pp_sectors
)
);
*
pp_sectors
=
calloc
(
i_tracks
+
1
,
sizeof
(
**
pp_sectors
)
);
if
(
*
pp_sectors
==
NULL
||
p_fulltoc
==
NULL
)
if
(
*
pp_sectors
==
NULL
||
p_fulltoc
==
NULL
)
{
{
...
@@ -415,7 +416,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
...
@@ -415,7 +416,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
{
{
int
i
;
int
i
;
*
pp_sectors
=
malloc
(
(
i_tracks
+
1
)
*
sizeof
(
**
pp_sectors
)
);
*
pp_sectors
=
calloc
(
i_tracks
+
1
,
sizeof
(
**
pp_sectors
)
);
if
(
*
pp_sectors
==
NULL
)
if
(
*
pp_sectors
==
NULL
)
return
0
;
return
0
;
...
@@ -448,7 +449,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
...
@@ -448,7 +449,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
{
{
int
i
;
int
i
;
*
pp_sectors
=
malloc
(
(
i_tracks
+
1
)
*
sizeof
(
**
pp_sectors
)
);
*
pp_sectors
=
calloc
(
i_tracks
+
1
,
sizeof
(
**
pp_sectors
)
);
if
(
*
pp_sectors
==
NULL
)
if
(
*
pp_sectors
==
NULL
)
return
0
;
return
0
;
...
@@ -503,7 +504,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
...
@@ -503,7 +504,7 @@ int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
{
{
int
i
;
int
i
;
*
pp_sectors
=
malloc
(
(
i_tracks
+
1
)
*
sizeof
(
**
pp_sectors
)
);
*
pp_sectors
=
calloc
(
i_tracks
+
1
,
sizeof
(
**
pp_sectors
)
);
if
(
*
pp_sectors
==
NULL
)
if
(
*
pp_sectors
==
NULL
)
return
0
;
return
0
;
...
@@ -914,7 +915,7 @@ static int OpenVCDImage( vlc_object_t * p_this, const char *psz_dev,
...
@@ -914,7 +915,7 @@ static int OpenVCDImage( vlc_object_t * p_this, const char *psz_dev,
* about the cuefile */
* about the cuefile */
size_t
i_tracks
=
0
;
size_t
i_tracks
=
0
;
while
(
fgets
(
line
,
1024
,
cuefile
)
)
while
(
fgets
(
line
,
1024
,
cuefile
)
&&
i_tracks
<
INT_MAX
-
1
)
{
{
/* look for a TRACK line */
/* look for a TRACK line */
char
psz_dummy
[
9
];
char
psz_dummy
[
9
];
...
@@ -930,7 +931,7 @@ static int OpenVCDImage( vlc_object_t * p_this, const char *psz_dev,
...
@@ -930,7 +931,7 @@ static int OpenVCDImage( vlc_object_t * p_this, const char *psz_dev,
&
i_min
,
&
i_sec
,
&
i_frame
)
!=
4
)
||
(
i_num
!=
1
)
)
&
i_min
,
&
i_sec
,
&
i_frame
)
!=
4
)
||
(
i_num
!=
1
)
)
continue
;
continue
;
int
*
buf
=
realloc
(
p_sectors
,
(
i_tracks
+
1
)
*
sizeof
(
int
));
int
*
buf
=
realloc
(
p_sectors
,
(
i_tracks
+
1
)
*
sizeof
(
*
buf
));
if
(
buf
==
NULL
)
if
(
buf
==
NULL
)
goto
error
;
goto
error
;
p_sectors
=
buf
;
p_sectors
=
buf
;
...
@@ -943,7 +944,7 @@ static int OpenVCDImage( vlc_object_t * p_this, const char *psz_dev,
...
@@ -943,7 +944,7 @@ static int OpenVCDImage( vlc_object_t * p_this, const char *psz_dev,
}
}
/* fill in the last entry */
/* fill in the last entry */
int
*
buf
=
realloc
(
p_sectors
,
(
i_tracks
+
1
)
*
sizeof
(
int
));
int
*
buf
=
realloc
(
p_sectors
,
(
i_tracks
+
1
)
*
sizeof
(
*
buf
));
if
(
buf
==
NULL
)
if
(
buf
==
NULL
)
goto
error
;
goto
error
;
p_sectors
=
buf
;
p_sectors
=
buf
;
...
...
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