Skip to content
Snippets Groups Projects
Commit cfb204ea authored by John Koleszar's avatar John Koleszar Committed by Code Review
Browse files

Merge "Issue 150: Fixing linker warning in extend.c."

parents 4e6827a0 1d8277f8
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,10 @@ static void extend_plane_borders
for (i = 0; i < h - 0 + 1; i++)
{
vpx_memset(dest_ptr1, src_ptr1[0], el);
// Some linkers will complain if we call vpx_memset with el set to a
// constant 0.
if (el)
vpx_memset(dest_ptr1, src_ptr1[0], el);
vpx_memset(dest_ptr2, src_ptr2[0], er);
src_ptr1 += sp;
src_ptr2 += sp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment