Skip to content
  • Torsten Schönfeld's avatar
    Avoid misusing PL_na · b9bbcdb4
    Torsten Schönfeld authored
    We used to do "newSVpv (string, PL_na)" when we didn't know the string's
    length.  That's not correct, and breaks if other XS modules write to PL_na,
    which is what PL_na is intended for.  Simply use "newSVpv (string, 0)" instead.
    b9bbcdb4