summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/c/stuff.xs.pl2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 665717bf0..64ffef023 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -6,6 +6,8 @@
o added weakness check for root password
- drakboot
o fix crash bug #52997
+- diskdrake
+ o fix for libparted 1.9 (#52991)
Version 12.45 - 18 August 2009
diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl
index b323eb9f9..66971600d 100644
--- a/perl-install/c/stuff.xs.pl
+++ b/perl-install/c/stuff.xs.pl
@@ -545,7 +545,7 @@ get_disk_partitions(char * device_path)
char *path = ped_partition_get_path(part);
sprintf(desc, "%d ", part->num);
sprintf(desc+strlen(desc), "%s ", path);
- ped_free(path);
+ free(path);
if(part->fs_type)
strcat(desc, part->fs_type->name);
if(part->type == 0x0)