flac-gcc47
authorAnas Nashif <anas.nashif@intel.com>
Thu, 22 Nov 2012 14:31:16 +0000 (06:31 -0800)
committerAnas Nashif <anas.nashif@intel.com>
Thu, 22 Nov 2012 14:31:16 +0000 (06:31 -0800)
===================================================================

src/metaflac/options.c

index 56c4416..89ff6a3 100644 (file)
@@ -1041,7 +1041,7 @@ FLAC__bool parse_block_type(const char *in, Argument_BlockType *out)
                        out->entries[entry].filter_application_by_id = (0 != r);
                        if(0 != r) {
                                if(strlen(r) == 4) {
-                                       strcpy(out->entries[entry].application_id, r);
+                                       memcpy(out->entries[entry].application_id, r, 4);
                                }
                                else if(strlen(r) == 10 && strncmp(r, "0x", 2) == 0 && strspn(r+2, "0123456789ABCDEFabcdef") == 8) {
                                        FLAC__uint32 x = strtoul(r+2, 0, 16);