unlink_node - add missing var

This commit is contained in:
Abir Viqar 2013-11-23 13:35:31 -05:00
parent 1b3ef1a449
commit a95bf43069
1 changed files with 2 additions and 2 deletions

View File

@ -744,8 +744,8 @@ define(function(require) {
function unlink_node(objectStore, path, callback) {
path = normalize(path);
name = basename(path);
parentPath = dirname(path);
var name = basename(path);
var parentPath = dirname(path);
var directoryNode;
var directoryData;