Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
HardenedBSD
HardenedBSD
Commits
9cee3a87
Commit
9cee3a87
authored
May 01, 2015
by
Oliver Pinter
Browse files
HBSD: fix style in rtld.c, which was messed in
6fc06960
commit
Signed-off-by:
Oliver Pinter
<
oliver.pinter@hardenedbsd.org
>
parent
889d2e8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
libexec/rtld-elf/rtld.c
View file @
9cee3a87
...
...
@@ -2142,15 +2142,15 @@ randomize_neededs(Obj_Entry *obj, int flags)
static
int
load_needed_objects
(
Obj_Entry
*
first
,
int
flags
)
{
Obj_Entry
*
obj
;
Obj_Entry
*
obj
;
for
(
obj
=
first
;
obj
!=
NULL
;
obj
=
obj
->
next
)
{
randomize_neededs
(
obj
,
flags
);
if
(
process_needed
(
obj
,
obj
->
needed
,
flags
)
==
-
1
)
return
(
-
1
);
}
for
(
obj
=
first
;
obj
!=
NULL
;
obj
=
obj
->
next
)
{
randomize_neededs
(
obj
,
flags
);
if
(
process_needed
(
obj
,
obj
->
needed
,
flags
)
==
-
1
)
return
(
-
1
);
}
return
(
0
);
return
(
0
);
}
static
int
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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