summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/disk.c
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-02-26 01:22:36 +0000
committerThierry Vignaud <tv@mageia.org>2012-02-26 01:22:36 +0000
commitd4b9d1ef7b0913237ed03d24a9744c54ea579042 (patch)
tree9eb8277401600c4e95b629a7f87f382e3f9d4f8a /mdk-stage1/disk.c
parent06d5f1bcc9aee5ab94a6c78c99a876408ecc9f1f (diff)
downloaddrakx-d4b9d1ef7b0913237ed03d24a9744c54ea579042.tar
drakx-d4b9d1ef7b0913237ed03d24a9744c54ea579042.tar.gz
drakx-d4b9d1ef7b0913237ed03d24a9744c54ea579042.tar.bz2
drakx-d4b9d1ef7b0913237ed03d24a9744c54ea579042.tar.xz
drakx-d4b9d1ef7b0913237ed03d24a9744c54ea579042.zip
(try_with_device) fix segfaulting when ISO directory is not valid (mga#4592)
(use our new non segfaulting dirname() implementation) also do not include string.h twice
Diffstat (limited to 'mdk-stage1/disk.c')
-rw-r--r--mdk-stage1/disk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdk-stage1/disk.c b/mdk-stage1/disk.c
index c2b71dbfc..804c8ea2b 100644
--- a/mdk-stage1/disk.c
+++ b/mdk-stage1/disk.c
@@ -19,14 +19,14 @@
*
*/
+#define _GNU_SOURCE /* We want the non segfaulting my_dirname() -- See dirname(3) */
+#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
-#include <string.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <fcntl.h>
-#include <string.h>
#include <libgen.h>
#include "stage1.h"
#include "frontend.h"
@@ -155,7 +155,7 @@ static enum return_type try_with_device(char *dev_name)
char * path = strdup(answers_location[0]);
stg1_error_message("Directory or ISO image file could not be found on partition.\n"
"Here's a short extract of the files in the directory %s:\n"
- "%s", dirname(path), extract_list_directory(dirname(location_full)));
+ "%s", my_dirname(path), extract_list_directory(my_dirname(location_full)));
free(path);
goto ask_dir;
}