Skip to content

Commit

Permalink
Fixed: Infinite recursion in FS::lastModified()
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Oct 11, 2012
1 parent 621a7b5 commit db7208f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/fs_main.cpp
Expand Up @@ -1181,7 +1181,7 @@ de::DFile* FS::tryOpenFile2(char const* path, char const* mode, size_t baseOffse
DFile* hndl = DFileBuilder::fromNativeFile(*nativeFile, baseOffset);

// Prepare the temporary info descriptor.
LumpInfo info = LumpInfo(lastModified(Str_Text(foundPath)));
LumpInfo info = LumpInfo(F_LastModified(Str_Text(foundPath)));

// Search path is used here rather than found path as the latter may have
// been mapped to another location. We want the file to be attributed with
Expand Down

0 comments on commit db7208f

Please sign in to comment.