diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/film.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 0a989201b..34289e65f 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -1317,7 +1317,11 @@ Film::info_path (int f) const s << setfill('0') << f << ".md5"; p /= s.str(); - return file (p.string ()); + + /* info_dir() will already have added any initial bit of the path, + so don't call file() on this. + */ + return p.string (); } string |
