Check access to file contents before adding it to public iso tree.

This commit is contained in:
Vreixo Formoso 2007-12-29 16:34:17 +01:00
parent 5c22069d19
commit 71cd3ccb89
2 changed files with 8 additions and 2 deletions

View File

@ -160,6 +160,12 @@ int iso_file_source_stream_new(IsoFileSource *src, IsoStream **stream)
return ISO_FILE_IS_DIR;
}
/* check for read access to contents */
r = iso_file_source_access(src);
if (r < 0) {
return r;
}
str = malloc(sizeof(IsoStream));
if (str == NULL) {
return ISO_MEM_ERROR;

View File

@ -462,8 +462,8 @@ int iso_add_dir_aux(IsoImage *image, IsoDir *parent, IsoFileSource *dir)
result = builder->create_node(builder, image, file, &new);
if (result < 0) {
iso_msg_debug(image, "Error %d when adding file %s", result,
iso_file_source_get_path(file));
iso_msg_note(image, LIBISO_FILE_IGNORED, "Error %d when adding "
"file %s", result, iso_file_source_get_path(file));
if (image->recOpts->report) {
action = image->recOpts->report(file, result, flag);