From: Gordon Hecker Date: Thu, 30 Apr 2009 13:29:56 +0000 (+0200) Subject: fix missing variable declaration X-Git-Tag: e2factory-2.3.1pre1~32 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=4bb22c1241ae5d45be556d666411a0673af52da9;p=e2factory.git fix missing variable declaration Signed-off-by: Gordon Hecker --- diff --git a/generic/e2lib.lua b/generic/e2lib.lua index 9d0bc92..cdefb9c 100644 --- a/generic/e2lib.lua +++ b/generic/e2lib.lua @@ -1628,7 +1628,7 @@ function e2lib.parentdirs(path) local stop = false while true do local px - p = path:find("/", i) + local p = path:find("/", i) if not p then p = #path stop = true