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
9ab25caf
Commit
9ab25caf
authored
Apr 15, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* http: fixed some gcc warning.
parent
0cf118e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/control/http.c
modules/control/http.c
+4
-4
No files found.
modules/control/http.c
View file @
9ab25caf
...
...
@@ -117,9 +117,9 @@ static int HttpCallback( httpd_file_sys_t *p_args,
uint8_t
*
p_request
,
uint8_t
**
pp_data
,
int
*
pi_data
);
static
char
*
uri_extract_value
(
char
*
psz_uri
,
char
*
psz_name
,
static
char
*
uri_extract_value
(
char
*
psz_uri
,
c
onst
c
har
*
psz_name
,
char
*
psz_value
,
int
i_value_max
);
static
int
uri_test_param
(
char
*
psz_uri
,
char
*
psz_name
);
static
int
uri_test_param
(
char
*
psz_uri
,
c
onst
c
har
*
psz_name
);
static
void
uri_decode_url_encoded
(
char
*
psz
);
...
...
@@ -2576,7 +2576,7 @@ static int HttpCallback( httpd_file_sys_t *p_args,
/****************************************************************************
* uri parser
****************************************************************************/
static
int
uri_test_param
(
char
*
psz_uri
,
char
*
psz_name
)
static
int
uri_test_param
(
char
*
psz_uri
,
c
onst
c
har
*
psz_name
)
{
char
*
p
=
psz_uri
;
...
...
@@ -2592,7 +2592,7 @@ static int uri_test_param( char *psz_uri, char *psz_name )
return
VLC_FALSE
;
}
static
char
*
uri_extract_value
(
char
*
psz_uri
,
char
*
psz_name
,
static
char
*
uri_extract_value
(
char
*
psz_uri
,
c
onst
c
har
*
psz_name
,
char
*
psz_value
,
int
i_value_max
)
{
char
*
p
=
psz_uri
;
...
...
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