Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54158
b: refs/heads/master
c: 11de39e
h: refs/heads/master
v: v3
  • Loading branch information
Marcin Garski authored and Sam Ravnborg committed May 6, 2007
1 parent 5d03a2b commit 52cca82
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 767e581d759fe6adfef5e676cd1cd8e11f603d1a
refs/heads/master: 11de39e2fbbc592018e0a231d0ee773653dcc8d6
2 changes: 1 addition & 1 deletion trunk/scripts/kconfig/lex.zconf.c_shipped
Original file line number Diff line number Diff line change
Expand Up @@ -2264,7 +2264,7 @@ FILE *zconf_fopen(const char *name)
FILE *f;

f = fopen(name, "r");
if (!f && name[0] != '/') {
if (!f && name != NULL && name[0] != '/') {
env = getenv(SRCTREE);
if (env) {
sprintf(fullname, "%s/%s", env, name);
Expand Down
2 changes: 1 addition & 1 deletion trunk/scripts/kconfig/zconf.l
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ FILE *zconf_fopen(const char *name)
FILE *f;

f = fopen(name, "r");
if (!f && name[0] != '/') {
if (!f && name != NULL && name[0] != '/') {
env = getenv(SRCTREE);
if (env) {
sprintf(fullname, "%s/%s", env, name);
Expand Down

0 comments on commit 52cca82

Please sign in to comment.