]> git.saurik.com Git - apt.git/blobdiff - test/libapt/cdrom_test.cc
Get rid of the old buildsystem
[apt.git] / test / libapt / cdrom_test.cc
index 626ef538e5364c61d38e0e7c551693d0c3fd0be8..b4c51cdb0452ca52ae9438c1cc6a85caddaab9c1 100644 (file)
@@ -91,7 +91,7 @@ TEST(CDROMTest,ReduceSourcelist)
 }
 TEST(CDROMTest, FindMountPointForDevice)
 {
-   char * tempfile;
+   std::string tempfile;
    FileFd fd;
    createTemporaryFile("mountpoints", fd, &tempfile,
         "rootfs / rootfs rw 0 0\n"
@@ -109,6 +109,6 @@ TEST(CDROMTest, FindMountPointForDevice)
    EXPECT_EQ("/boot/efi", FindMountPointForDevice("/dev/sda1"));
    EXPECT_EQ("/tmp", FindMountPointForDevice("tmpfs"));
 
-   unlink(tempfile);
-   free(tempfile);
+   if (tempfile.empty() == false)
+      unlink(tempfile.c_str());
 }