prevent nil

This commit is contained in:
Chris Lu 2020-08-17 10:07:34 -07:00
parent 60158a23b3
commit 4ccfdaeb4d

View file

@ -61,7 +61,7 @@ func (mc *MetaCache) AtomicUpdateEntry(ctx context.Context, oldPath util.FullPat
oldDir, _ := oldPath.DirAndName()
if mc.visitedBoundary.HasVisited(util.FullPath(oldDir)) {
if oldPath != "" {
if oldPath == newEntry.FullPath {
if newEntry != nil && oldPath == newEntry.FullPath {
// skip the unnecessary deletion
// leave the update to the following InsertEntry operation
} else {