]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 12 Dec 2003 12:57:49 +0000 (12:57 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 12 Dec 2003 12:57:49 +0000 (12:57 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2727 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/symbol.c

index a209f2209584b6963841cb34a6dfd3e0f106afd1..15c081e87abf0a2253d5dd8b451123a73f0d866a 100644 (file)
@@ -181,11 +181,8 @@ SymEntry* ParseScopedSymName (int AllocNew)
         /* Search for the symbol and return it. If no scope was specified,
          * search also in the upper levels.
          */
-        if (NoScope) {
+        if (NoScope && !AllocNew) {
             Sym = SymFindAny (Scope, Ident);
-            if (Sym == 0 && AllocNew) {
-                Sym = SymFind (Scope, Ident, AllocNew);
-            }
         } else {
             Sym = SymFind (Scope, Ident, AllocNew);
         }