aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorJP Roseveaer <jpr@ximian.com>2001-01-15 22:04:29 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-01-15 22:04:29 +0800
commit905f29ebb386bcd2d5becd8d348f2d0bd000430f (patch)
tree96c339636221ecf57ebf178c7e80436badec92fa /e-util
parentd3a4ca8979999a93a94c77a983b96aa642e27b2b (diff)
downloadgsoc2013-evolution-905f29ebb386bcd2d5becd8d348f2d0bd000430f.tar
gsoc2013-evolution-905f29ebb386bcd2d5becd8d348f2d0bd000430f.tar.gz
gsoc2013-evolution-905f29ebb386bcd2d5becd8d348f2d0bd000430f.tar.bz2
gsoc2013-evolution-905f29ebb386bcd2d5becd8d348f2d0bd000430f.tar.lz
gsoc2013-evolution-905f29ebb386bcd2d5becd8d348f2d0bd000430f.tar.xz
gsoc2013-evolution-905f29ebb386bcd2d5becd8d348f2d0bd000430f.tar.zst
gsoc2013-evolution-905f29ebb386bcd2d5becd8d348f2d0bd000430f.zip
Dup the string passed in, not the temporary string. d'oh.
2001-01-15 JP Roseveaer <jpr@ximian.com> * e-pilot-util.c (e_pilot_utf8_from_pchar): Dup the string passed in, not the temporary string. d'oh. svn path=/trunk/; revision=7501
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-pilot-util.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 39e498066d..8307f2b29c 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-15 JP Roseveaer <jpr@ximian.com>
+
+ * e-pilot-util.c (e_pilot_utf8_from_pchar): Dup the string passed
+ in, not the temporary string. d'oh.
+
2001-01-04 Dan Winship <danw@helixcode.com>
* e-msgport.c: #define E_THREAD_NONE as ((pthread_t)~0) and use
diff --git a/e-util/e-pilot-util.c b/e-util/e-pilot-util.c
index 58c6937b8c..0f91f48e3a 100644
--- a/e-util/e-pilot-util.c
+++ b/e-util/e-pilot-util.c
@@ -56,7 +56,7 @@ e_pilot_utf8_from_pchar (const char *string)
res = convert_FromPilotChar ("UTF8", string, strlen (string), &ustring);
if (res != 0)
- ustring = strdup (ustring);
+ ustring = strdup (string);
return ustring;
}