Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
13
Issues
13
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GSoC2018
macOS
vlc
Commits
0c17ee76
Commit
0c17ee76
authored
Feb 16, 2018
by
François Cartegnie
🤞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
text_renderer: freetype: fix signedness
parent
ab0b7eb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/text_renderer/freetype/text_layout.c
modules/text_renderer/freetype/text_layout.c
+2
-2
No files found.
modules/text_renderer/freetype/text_layout.c
View file @
0c17ee76
...
...
@@ -1536,12 +1536,12 @@ int LayoutTextBlock( filter_t *p_filter,
{
line_desc_t
*
p_first_line
=
0
;
line_desc_t
**
pp_line
=
&
p_first_line
;
in
t
i_paragraph_start
=
0
;
size_
t
i_paragraph_start
=
0
;
unsigned
i_total_height
=
0
;
unsigned
i_max_advance_x
=
0
;
int
i_max_face_height
=
0
;
for
(
in
t
i
=
0
;
i
<=
p_textblock
->
i_count
;
++
i
)
for
(
size_
t
i
=
0
;
i
<=
p_textblock
->
i_count
;
++
i
)
{
if
(
i
==
p_textblock
->
i_count
||
p_textblock
->
p_uchars
[
i
]
==
'\n'
)
{
...
...
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