Skip to content

Commit

Permalink
Check overflow of outline points in ft_stroke_border_export()
Browse files Browse the repository at this point in the history
  • Loading branch information
mymedia2 committed Mar 5, 2022
1 parent f7b72f1 commit a81585d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/vector/freetype/v_ft_stroker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include "v_ft_stroker.h"
#include <assert.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "v_ft_math.h"
Expand Down Expand Up @@ -626,6 +627,8 @@ static SW_FT_Error ft_stroke_border_get_counts(SW_FT_StrokeBorder border,
static void ft_stroke_border_export(SW_FT_StrokeBorder border,
SW_FT_Outline* outline)
{
if ((unsigned long)outline->n_points + border->num_points > SHRT_MAX) return;

/* copy point locations */
memcpy(outline->points + outline->n_points, border->points,
border->num_points * sizeof(SW_FT_Vector));
Expand Down

0 comments on commit a81585d

Please sign in to comment.