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
e5d7794c
Commit
e5d7794c
authored
Apr 06, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix potential bugs
parent
335a2445
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
lxdialog/lxdialog.c
lxdialog/lxdialog.c
+1
-1
modules/access/dvb/linux_dvb.c
modules/access/dvb/linux_dvb.c
+1
-1
modules/access/rtsp/real.c
modules/access/rtsp/real.c
+1
-1
No files found.
lxdialog/lxdialog.c
View file @
e5d7794c
...
...
@@ -208,7 +208,7 @@ j_inputbox (const char *t, int ac, const char * const * av)
int
ret
=
dialog_inputbox
(
t
,
av
[
2
],
atoi
(
av
[
3
]),
atoi
(
av
[
4
]),
ac
==
6
?
av
[
5
]
:
(
char
*
)
NULL
);
if
(
ret
==
0
)
fprintf
(
stderr
,
dialog_input_result
);
fprintf
(
stderr
,
"%s"
,
dialog_input_result
);
return
ret
;
}
...
...
modules/access/dvb/linux_dvb.c
View file @
e5d7794c
...
...
@@ -1650,7 +1650,7 @@ void E_(CAMStatus)( access_t * p_access )
#define CHECK_TYPE( x, s ) \
if ( sinfo.type & (CA_##x) ) \
p += sprintf( p, s );
p += sprintf( p,
"%s",
s );
CHECK_TYPE
(
CI
,
"high level, "
);
CHECK_TYPE
(
CI_LINK
,
"link layer level, "
);
...
...
modules/access/rtsp/real.c
View file @
e5d7794c
...
...
@@ -673,7 +673,7 @@ rmff_header_t *real_setup_and_get_header(rtsp_client_t *rtsp_session, int bandw
if
(
rtsp_read_data
(
rtsp_session
,
description
,
size
)
<=
0
)
goto
error
;
description
[
size
]
=
0
;
fprintf
(
stderr
,
description
);
fprintf
(
stderr
,
"%s"
,
description
);
/* parse sdp (sdpplin) and create a header and a subscribe string */
subscribe
=
(
char
*
)
malloc
(
sizeof
(
char
)
*
256
);
...
...
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