Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
U-Boot
Custodians
RISC-V U-Boot Custodian Tree
Commits
cf8bc577
Commit
cf8bc577
authored
May 04, 2005
by
wdenk
Browse files
Fix problem with symbolic links in JFFS2 code.
parent
a710d4be
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
cf8bc577
...
...
@@ -2,6 +2,8 @@
Changes for U-Boot 1.1.3:
======================================================================
* Fix problem with symbolic links in JFFS2 code.
* Use linker ASSERT statement to prevent undetected overlapping of
sections on PPChameleon board; other boards might use this, too.
...
...
fs/jffs2/jffs2_1pass.c
View file @
cf8bc577
...
...
@@ -760,7 +760,11 @@ jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
if
(
jNode
->
ino
==
jDir
->
ino
&&
jNode
->
version
>=
i_version
)
{
if
(
i
)
put_fl_mem
(
i
);
i
=
get_fl_mem
(
b2
->
offset
,
sizeof
(
*
i
),
NULL
);
if
(
jDir
->
type
==
DT_LNK
)
i
=
get_node_mem
(
b2
->
offset
);
else
i
=
get_fl_mem
(
b2
->
offset
,
sizeof
(
*
i
),
NULL
);
}
b2
=
b2
->
next
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment