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
d5a9259d
Commit
d5a9259d
authored
Mar 15, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mms: revert some parts.
parent
b336d67d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
modules/access/mms/mms.c
modules/access/mms/mms.c
+5
-4
No files found.
modules/access/mms/mms.c
View file @
d5a9259d
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* mms.c: MMS access plug-in
* mms.c: MMS access plug-in
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mms.c,v 1.2
4 2003/03/15 02:33:2
3 fenrir Exp $
* $Id: mms.c,v 1.2
5 2003/03/15 03:02:1
3 fenrir Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
...
@@ -1574,7 +1574,6 @@ static int mms_ParseCommand( input_thread_t *p_input,
...
@@ -1574,7 +1574,6 @@ static int mms_ParseCommand( input_thread_t *p_input,
{
{
msg_Warn
(
p_input
,
"truncated command (header incomplete)"
);
msg_Warn
(
p_input
,
"truncated command (header incomplete)"
);
p_access
->
i_command
=
0
;
p_access
->
i_command
=
0
;
*
pi_used
=
0
;
return
(
-
1
);
return
(
-
1
);
}
}
i_id
=
GetDWLE
(
p_data
+
4
);
i_id
=
GetDWLE
(
p_data
+
4
);
...
@@ -1594,7 +1593,6 @@ static int mms_ParseCommand( input_thread_t *p_input,
...
@@ -1594,7 +1593,6 @@ static int mms_ParseCommand( input_thread_t *p_input,
"truncated command (missing %d bytes)"
,
"truncated command (missing %d bytes)"
,
i_length
-
i_data
);
i_length
-
i_data
);
p_access
->
i_command
=
0
;
p_access
->
i_command
=
0
;
*
pi_used
=
0
;
return
(
-
1
);
return
(
-
1
);
}
}
else
if
(
i_length
<
p_access
->
i_cmd
)
else
if
(
i_length
<
p_access
->
i_cmd
)
...
@@ -1640,7 +1638,6 @@ static int mms_ParsePacket( input_thread_t *p_input,
...
@@ -1640,7 +1638,6 @@ static int mms_ParsePacket( input_thread_t *p_input,
if
(
i_data
<=
8
)
if
(
i_data
<=
8
)
{
{
msg_Warn
(
p_input
,
"truncated packet (header incomplete)"
);
msg_Warn
(
p_input
,
"truncated packet (header incomplete)"
);
*
pi_used
=
0
;
return
(
-
1
);
return
(
-
1
);
}
}
...
@@ -1873,6 +1870,10 @@ static int mms_ReceiveCommand( input_thread_t *p_input )
...
@@ -1873,6 +1870,10 @@ static int mms_ReceiveCommand( input_thread_t *p_input )
break
;
break
;
}
}
}
}
else
{
return
(
-
1
);
}
}
}
return
(
0
);
return
(
0
);
...
...
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