]> git.pld-linux.org Git - packages/eggdrop.git/commitdiff
- one more bytearray->string change.
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 9 Mar 2008 20:28:39 +0000 (20:28 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    eggdrop-bz-463.patch -> 1.2

eggdrop-bz-463.patch

index 75c5618bcc6a3e6854fa05b665586614e7398b66..16fe8acdc89c523539f5c4ec33120807eec4d322 100644 (file)
@@ -1,5 +1,14 @@
 --- src/tcl.c.org      2008-03-09 12:56:37.212570719 +0100
 +++ src/tcl.c  2008-03-09 12:56:59.183621062 +0100
+@@ -292,7 +292,7 @@
+       if (!obj)
+         return NULL;
+       len = 0;
+-      bytes = Tcl_GetByteArrayFromObj(obj, &len);
++      bytes = Tcl_GetStringFromObj(obj, &len);
+       if (!bytes)
+         return NULL;
+       s = malloc(len + 1);
 @@ -350,7 +350,7 @@
    utftot += sizeof(char *) * objc;
    objc -= 5;
This page took 0.133538 seconds and 4 git commands to generate.