summaryrefslogtreecommitdiff
path: root/src/KM_fileio.cpp
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2009-08-04 18:43:10 +0000
committerjhurst <>2009-08-04 18:43:10 +0000
commit61a1033e5c75e8318340a3789c35ec6d008432cd (patch)
tree130747f1c540402382cb9c09240f0c6b95d2dcae /src/KM_fileio.cpp
parenta102d4a41e97e39d36220cbaaaca30079b36d7f0 (diff)
build JP2K parsers with file lists
Diffstat (limited to 'src/KM_fileio.cpp')
-rw-r--r--src/KM_fileio.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/KM_fileio.cpp b/src/KM_fileio.cpp
index fba8578..b9257ab 100644
--- a/src/KM_fileio.cpp
+++ b/src/KM_fileio.cpp
@@ -1455,7 +1455,9 @@ Kumu::DeleteFile(const std::string& filename)
Result_t
h__DeletePath(const std::string& pathname)
{
- fprintf(stderr, "h__DeletePath %s\n", pathname.c_str());
+ if ( pathname.empty() )
+ return RESULT_NULL_STR;
+
Result_t result = RESULT_OK;
if ( ! PathIsDirectory(pathname) )