The basename default should be the filename itself

This commit is contained in:
Pavel Krajcevski 2014-05-07 22:58:32 +02:00
parent 03b9e7f413
commit d13cca3362

View File

@ -91,7 +91,7 @@ void ExtractBasename(const char *filename, char *buf, size_t bufSz) {
size_t len = strlen(filename); size_t len = strlen(filename);
const char *end = filename + len; const char *end = filename + len;
const char *ext = end; const char *ext = end;
const char *base = NULL; const char *base = filename;
while(--end != filename && !base) { while(--end != filename && !base) {
if(*end == '.') { if(*end == '.') {
ext = end; ext = end;
@ -100,11 +100,6 @@ void ExtractBasename(const char *filename, char *buf, size_t bufSz) {
} }
} }
if(!base) {
fprintf(stderr, "Filename (%s) has no extension, we don't know how to deal with it!\n", filename);
exit(1);
}
size_t numChars = ext - base + 1; size_t numChars = ext - base + 1;
size_t toCopy = ::std::min(numChars, bufSz); size_t toCopy = ::std::min(numChars, bufSz);
memcpy(buf, base, toCopy); memcpy(buf, base, toCopy);