[Bug 518] NPString.utf8characters not guaranteed to be nul-terminated

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Mon Jul 12 16:29:46 PDT 2010


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=518





------- Comment #1 from dnietoc at gmail.com  2010-07-12 23:29 -------
To be even more defensive let it be:

    gchar* safeNPString = g_strndup(
        NPVARIANT_TO_STRING(*location).UTF8Characters,
        NPVARIANT_TO_STRING(*location).UTF8Length);

    char** parts = g_strsplit (safeNPString, "/", -1);
    g_free(safeNPString);


g_strlcpy will still go past the end of the string when returning
strlen(UTF8Characters).


-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the distro-pkg-dev mailing list