# HG changeset patch # User William Pitcock # Date 1190302628 18000 # Node ID 99e468c53dff8dd184b656b5a6f5950df2a2edda # Parent c730f021245689ca876c17ff4c4ac386d79ff99e# Parent 301a2f9b287d5cbe0d897926f5d66474132860c8 Automated merge with ssh://hg.atheme.org//hg/audacious-plugins diff -r c730f0212456 -r 99e468c53dff src/neon/neon.c --- a/src/neon/neon.c Thu Sep 20 10:36:56 2007 -0500 +++ b/src/neon/neon.c Thu Sep 20 10:37:08 2007 -0500 @@ -223,7 +223,7 @@ * End of tag name. */ *p = '\0'; - strcpy(name, tstart); + g_strlcpy(name, tstart, 4096); _DEBUG("Found tag name: %s", name); state = 2; } else { @@ -252,7 +252,7 @@ * End of value */ *p = '\0'; - strcpy(value, tstart); + g_strlcpy(value, tstart, 4096); _DEBUG("Found tag value: %s", value); add_icy(m, name, value); state = 4;