Skip to content
Snippets Groups Projects
Commit 801fa204 authored by Ann Priestman's avatar Ann Priestman
Browse files

Return an empty string instead of "NO_INFO" if the current directory is unavailable.

parent eb921f91
No related branches found
No related tags found
No related merge requests found
......@@ -298,7 +298,7 @@ public synchronized long commit() throws TskCoreException {
* @return The directory
*/
public synchronized String currentDirectory() {
return tskAutoDbPointer == 0 ? "NO_INFO" : getCurDirNat(tskAutoDbPointer); //NON-NLS
return tskAutoDbPointer == 0 ? "" : getCurDirNat(tskAutoDbPointer); //NON-NLS
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment