Edit

IABSD.fr/ports/audio/p5-Ogg-Vorbis-Header/patches

Branch :

  • Show log

    Commit

  • Author : jca
    Date : 2023-01-24 18:16:32
    Hash : ef8bba0a
    Message : Fix return value of write_vorbis() to unbreak with clang 15

  • patch-lib_Ogg_Vorbis_Header_pm
  • Index: lib/Ogg/Vorbis/Header.pm
    --- lib/Ogg/Vorbis/Header.pm.orig
    +++ lib/Ogg/Vorbis/Header.pm
    @@ -7,7 +7,7 @@ use warnings;
     our $VERSION = '0.11';
     
     use Inline C => 'DATA',
    -  LIBS => '-logg -lvorbis -lvorbisfile',
    +  LIBS => '-L${LOCALBASE}/lib -logg -lvorbis -lvorbisfile',
       INC => '-I/inc',
       AUTO_INCLUDE => '#include "inc/vcedit.h"',
       AUTO_INCLUDE => '#include "inc/vcedit.c"',
    @@ -476,14 +476,14 @@ int write_vorbis (SV *obj)
       if ((fd = fopen(inpath, "rb")) == NULL) {
         perror("Error opening file in Ogg::Vorbis::Header::write\n");
         free(outpath);
    -    return &PL_sv_undef;
    +    return 0;
       }
     
       if ((fd2 = fopen(outpath, "w+b")) == NULL) {
         perror("Error opening temp file in Ogg::Vorbis::Header::write\n");
         fclose(fd);
         free(outpath);
    -    return &PL_sv_undef;
    +    return 0;
       }
     
       /* Setup the state and comments structs */
    @@ -494,7 +494,7 @@ int write_vorbis (SV *obj)
         fclose(fd2);
         unlink(outpath);
         free(outpath);
    -    return &PL_sv_undef;
    +    return 0;
       }
       vc = vcedit_comments(state);
     
    @@ -526,7 +526,7 @@ int write_vorbis (SV *obj)
         vcedit_clear(state);
         unlink(outpath);
         free(outpath);
    -    return &PL_sv_undef;
    +    return 0;
       }
     
       fclose(fd);
    @@ -536,7 +536,7 @@ int write_vorbis (SV *obj)
         perror("Error copying tempfile in Ogg::Vorbis::Header::add_comment\n");
         unlink(outpath);
         free(outpath);
    -    return &PL_sv_undef;
    +    return 0;
       }
     
       if ((fd2 = fopen(inpath, "wb")) == NULL) {
    @@ -544,7 +544,7 @@ int write_vorbis (SV *obj)
         fclose(fd);
         unlink(outpath);
         free(outpath);
    -    return &PL_sv_undef;
    +    return 0;
       }
     
       while ((bytes = fread(buffer, 1, BUFFSIZE, fd)) > 0)