After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 318269 - Script-Fu.exe crash in Win XP SP2
Script-Fu.exe crash in Win XP SP2
Status: RESOLVED DUPLICATE of bug 163212
Product: GIMP
Classification: Other
Component: Script-Fu
2.3.x
Other Windows
: Normal critical
: 2.4
Assigned To: GIMP Bugs
GIMP Bugs
Depends on:
Blocks:
 
 
Reported: 2005-10-08 09:40 UTC by hide-keiko
Modified: 2008-01-15 14:04 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description hide-keiko 2005-10-08 09:40:04 UTC
Distribution/Version: XP SP2

In platform Windows XP SP2
GIMP2.3.4 & GTK+2.8.4, Script-Fu crashes at the time of starting. This 
phenomenon is the same also in GIMP2.2.8 & GTK+2.6.9.
Comment 1 hide-keiko 2005-10-08 10:04:44 UTC
It is a characteristic phenomenon in a Japanese version.
Comment 2 Sven Neumann 2005-10-10 09:13:50 UTC
And a well-known one also since this is most likely a duplicate of bug #163212.

*** This bug has been marked as a duplicate of 163212 ***
Comment 3 hide-keiko 2005-10-11 00:04:08 UTC
gimp-2.2.8/plug-ins/script-fu/siod/slib.c 

1131 to 1135

       cname = name;
       while ((c = *cname++))
        hash = ((hash * 17) ^ c) % n;
       sl = obarray[hash];
     }

bug fix

       cname = name;
       while ((c = *cname++))
        hash = ((hash * 17) ^ c) % n;
       if (hash < 0)
         hash = -hash;
       sl = obarray[hash];
     }


 c  < 0 It may not operate.