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
fcead451
Commit
fcead451
authored
Feb 17, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stream_ReadLine: bytes per char is either 1 or 2
parent
62d1845e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
+12
-14
src/input/stream.c
src/input/stream.c
+12
-14
No files found.
src/input/stream.c
View file @
fcead451
...
...
@@ -1573,20 +1573,18 @@ char *stream_ReadLine( stream_t *s )
const
uint8_t
*
p
=
p_data
;
const
uint8_t
*
p_last
=
p
+
i_data
-
s
->
p_text
->
i_char_width
;
if
(
s
->
p_text
->
i_char_width
==
2
)
assert
(
s
->
p_text
->
i_char_width
==
2
);
if
(
s
->
p_text
->
b_little_endian
==
true
)
{
if
(
s
->
p_text
->
b_little_endian
==
true
)
{
/* UTF-16LE: 0A 00 <LF> */
while
(
p
<=
p_last
&&
(
p
[
0
]
!=
0x0A
||
p
[
1
]
!=
0x00
)
)
p
+=
2
;
}
else
{
/* UTF-16BE: 00 0A <LF> */
while
(
p
<=
p_last
&&
(
p
[
1
]
!=
0x0A
||
p
[
0
]
!=
0x00
)
)
p
+=
2
;
}
/* UTF-16LE: 0A 00 <LF> */
while
(
p
<=
p_last
&&
(
p
[
0
]
!=
0x0A
||
p
[
1
]
!=
0x00
)
)
p
+=
2
;
}
else
{
/* UTF-16BE: 00 0A <LF> */
while
(
p
<=
p_last
&&
(
p
[
1
]
!=
0x0A
||
p
[
0
]
!=
0x00
)
)
p
+=
2
;
}
if
(
p
>
p_last
)
...
...
@@ -1595,7 +1593,7 @@ char *stream_ReadLine( stream_t *s )
}
else
{
psz_eol
=
(
char
*
)
p
+
(
s
->
p_text
->
i_char_width
-
1
)
;
psz_eol
=
(
char
*
)
p
+
1
;
}
}
...
...
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