~ubuntu-branches/ubuntu/quantal/flac/quantal

« back to all changes in this revision

Viewing changes to src/flac/vorbiscomment.c

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2007-12-06 16:57:20 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071206165720-ldii5tm8dq6zxg0l
Tags: 1.2.1-1ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/control: xmms-dev dropped to allow xmms to move to universe,
    adjust maintainer field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
220
220
                free(obj->field_value);
221
221
}
222
222
 
223
 
FLAC__bool flac__vorbiscomment_add(FLAC__StreamMetadata *block, const char *comment, FLAC__bool value_from_file, const char **violation)
 
223
FLAC__bool flac__vorbiscomment_add(FLAC__StreamMetadata *block, const char *comment, FLAC__bool value_from_file, FLAC__bool raw, const char **violation)
224
224
{
225
225
        Argument_VcField parsed;
226
226
        FLAC__bool dummy;
237
237
                return false;
238
238
        }
239
239
 
240
 
        if(!set_vc_field(block, &parsed, &dummy, /*raw=*/false, violation)) {
 
240
        if(!set_vc_field(block, &parsed, &dummy, raw, violation)) {
241
241
                free_field(&parsed);
242
242
                return false;
243
243
        }