Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
73c881f9
Commit
73c881f9
authored
Nov 14, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* forwardport [17753]: sap sdp_t initialization
- fix some const warnings - fix an "invalid" assert
parent
8599c626
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
20 deletions
+13
-20
modules/services_discovery/sap.c
modules/services_discovery/sap.c
+13
-20
No files found.
modules/services_discovery/sap.c
View file @
73c881f9
...
@@ -642,7 +642,7 @@ static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
...
@@ -642,7 +642,7 @@ static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
uint8_t
*
decomp
=
NULL
;
uint8_t
*
decomp
=
NULL
;
if
(
b_compressed
)
if
(
b_compressed
)
{
{
int
newsize
=
Decompress
(
buf
,
&
decomp
,
end
-
buf
);
int
newsize
=
Decompress
(
buf
,
&
decomp
,
end
-
buf
);
if
(
newsize
<
0
)
if
(
newsize
<
0
)
...
@@ -652,7 +652,7 @@ static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
...
@@ -652,7 +652,7 @@ static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
}
}
decomp
=
realloc
(
decomp
,
newsize
+
1
);
decomp
=
realloc
(
decomp
,
newsize
+
1
);
decomp
[
newsize
++
]
=
'\0'
;
decomp
[
newsize
]
=
'\0'
;
psz_sdp
=
(
const
char
*
)
decomp
;
psz_sdp
=
(
const
char
*
)
decomp
;
len
=
newsize
;
len
=
newsize
;
...
@@ -663,7 +663,8 @@ static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
...
@@ -663,7 +663,8 @@ static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
len
=
end
-
buf
;
len
=
end
-
buf
;
}
}
assert
(
buf
[
len
]
==
'\0'
);
/* len is a strlen here here. both buf and decomp are len+1 where the 1 should be a \0 */
assert
(
psz_sdp
[
len
]
==
'\0'
);
/* Skip payload type */
/* Skip payload type */
/* SAPv1 has implicit "application/sdp" payload type: first line is v=0 */
/* SAPv1 has implicit "application/sdp" payload type: first line is v=0 */
...
@@ -1026,6 +1027,9 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
...
@@ -1026,6 +1027,9 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
if
(
p_sdp
==
NULL
)
if
(
p_sdp
==
NULL
)
return
NULL
;
return
NULL
;
/* init to 0 */
memset
(
p_sdp
,
0
,
sizeof
(
sdp_t
)
);
p_sdp
->
psz_sdp
=
strdup
(
psz_sdp
);
p_sdp
->
psz_sdp
=
strdup
(
psz_sdp
);
if
(
p_sdp
->
psz_sdp
==
NULL
)
if
(
p_sdp
->
psz_sdp
==
NULL
)
{
{
...
@@ -1033,23 +1037,12 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
...
@@ -1033,23 +1037,12 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
return
NULL
;
return
NULL
;
}
}
p_sdp
->
psz_sessionname
=
NULL
;
p_sdp
->
psz_media
=
NULL
;
p_sdp
->
psz_connection
=
NULL
;
p_sdp
->
psz_uri
=
NULL
;
p_sdp
->
psz_address
=
NULL
;
p_sdp
->
psz_address_type
=
NULL
;
p_sdp
->
i_media
=
0
;
p_sdp
->
i_attributes
=
0
;
p_sdp
->
pp_attributes
=
NULL
;
while
(
*
psz_sdp
!=
'\0'
&&
b_end
==
VLC_FALSE
)
while
(
*
psz_sdp
!=
'\0'
&&
b_end
==
VLC_FALSE
)
{
{
char
*
psz_eol
;
char
*
psz_eol
=
NULL
;
char
*
psz_eof
;
char
*
psz_eof
=
NULL
;
char
*
psz_parse
;
char
*
psz_parse
=
NULL
;
char
*
psz_sess_id
;
char
*
psz_sess_id
=
NULL
;
while
(
*
psz_sdp
==
'\r'
||
*
psz_sdp
==
'\n'
||
while
(
*
psz_sdp
==
'\r'
||
*
psz_sdp
==
'\n'
||
*
psz_sdp
==
' '
||
*
psz_sdp
==
'\t'
)
*
psz_sdp
==
' '
||
*
psz_sdp
==
'\t'
)
...
@@ -1059,7 +1052,7 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
...
@@ -1059,7 +1052,7 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
if
(
(
psz_eol
=
strchr
(
psz_sdp
,
'\n'
)
)
==
NULL
)
if
(
(
psz_eol
=
strchr
(
psz_sdp
,
'\n'
)
)
==
NULL
)
{
{
psz_eol
=
psz_sdp
+
strlen
(
psz_sdp
);
psz_eol
=
(
char
*
)
psz_sdp
+
strlen
(
psz_sdp
);
b_end
=
VLC_TRUE
;
b_end
=
VLC_TRUE
;
}
}
if
(
psz_eol
>
psz_sdp
&&
*
(
psz_eol
-
1
)
==
'\r'
)
if
(
psz_eol
>
psz_sdp
&&
*
(
psz_eol
-
1
)
==
'\r'
)
...
@@ -1115,7 +1108,7 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
...
@@ -1115,7 +1108,7 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
psz_parse = psz_eof + 1; i_field++;
psz_parse = psz_eof + 1; i_field++;
psz_parse
=
&
psz_sdp
[
2
];
psz_parse
=
(
char
*
)
&
psz_sdp
[
2
];
GET_FIELD
(
p_sdp
->
psz_username
);
GET_FIELD
(
p_sdp
->
psz_username
);
GET_FIELD
(
psz_sess_id
);
GET_FIELD
(
psz_sess_id
);
...
...
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