summaryrefslogtreecommitdiffstats
path: root/perl-install/c
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/c')
-rw-r--r--perl-install/c/stuff.xs.pl2
1 files changed, 1 insertions, 1 deletions
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)