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
48aef0f0
Commit
48aef0f0
authored
Mar 17, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout_fb: fix a potential memleak and some cleanings.
parent
1ece85a6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
modules/video_output/fb.c
modules/video_output/fb.c
+3
-7
No files found.
modules/video_output/fb.c
View file @
48aef0f0
/*****************************************************************************
* fb.c : framebuffer plugin for vlc
*****************************************************************************
* Copyright (C) 2000
, 2001
the VideoLAN team
* Copyright (C) 2000
-2009
the VideoLAN team
* $Id$
*
* Authors: Samuel Hocevar <sam@zoy.org>
...
...
@@ -186,10 +186,9 @@ static int Create( vlc_object_t *p_this )
struct
termios
new_termios
;
/* Allocate instance and initialize some members */
p_vout
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
vout_sys_t
)
);
p_vout
->
p_sys
=
p_sys
=
calloc
(
1
,
sizeof
(
vout_sys_t
)
);
if
(
p_vout
->
p_sys
==
NULL
)
return
VLC_ENOMEM
;
memset
(
p_sys
,
0
,
sizeof
(
vout_sys_t
)
);
p_sys
->
p_video
=
MAP_FAILED
;
...
...
@@ -212,6 +211,7 @@ static int Create( vlc_object_t *p_this )
if
(
p_sys
->
b_tty
&&
!
isatty
(
0
)
)
{
msg_Warn
(
p_vout
,
"fd 0 is not a TTY"
);
free
(
p_sys
);
return
VLC_EGENERIC
;
}
else
...
...
@@ -239,7 +239,6 @@ static int Create( vlc_object_t *p_this )
psz_chroma
);
}
free
(
psz_chroma
);
psz_chroma
=
NULL
;
}
p_sys
->
i_aspect
=
-
1
;
...
...
@@ -258,7 +257,6 @@ static int Create( vlc_object_t *p_this )
atoi
(
psz_aspect
),
atoi
(
psz_parser
)
);
free
(
psz_aspect
);
psz_aspect
=
NULL
;
}
p_sys
->
b_auto
=
false
;
...
...
@@ -284,7 +282,6 @@ static int Create( vlc_object_t *p_this )
case
4
:
default:
p_sys
->
b_auto
=
true
;
break
;
}
/* tty handling */
...
...
@@ -783,7 +780,6 @@ static int OpenDisplay( vout_thread_t *p_vout )
return
VLC_EGENERIC
;
}
free
(
psz_device
);
psz_device
=
NULL
;
/* Get framebuffer device information */
if
(
ioctl
(
p_sys
->
i_fd
,
FBIOGET_VSCREENINFO
,
&
p_sys
->
var_info
)
)
...
...
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