Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
belle-sip
Commits
1ac99359
Commit
1ac99359
authored
Jul 16, 2013
by
jehan
Browse files
do not check mandatory headers in null messages
parent
1911434d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/message.c
src/message.c
+1
-1
No files found.
src/message.c
View file @
1ac99359
...
...
@@ -93,7 +93,7 @@ belle_sip_message_t* belle_sip_message_parse_raw (const char* buff, size_t buff_
l_parsed_object->body[l_parsed_object->body_length]='\0';
}*/
/*check if message is valid*/
if
(
!
belle_sip_check_message_headers
(
l_parsed_object
))
{
if
(
l_parsed_object
&&
!
belle_sip_check_message_headers
(
l_parsed_object
))
{
/*error case*/
belle_sip_object_unref
(
l_parsed_object
);
l_parsed_object
=
NULL
;
...
...
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