1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-29 23:07:56 +00:00

Missing initialization

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17768 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-03-08 10:24:07 +00:00
parent 7d904048e6
commit 6c612f342a

View File

@ -9,7 +9,7 @@
#ifndef HAVE_STRLCPY
unsigned int strlcpy (char *dest, const char *src, unsigned int size)
{
register unsigned int i;
register unsigned int i = 0;
if (size > 0) {
size--;