Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relibc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
relibc
Merge requests
!325
Fix global symbols relocations
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix global symbols relocations
8tab/relibc:globalsyms
into
master
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
8tab
requested to merge
8tab/relibc:globalsyms
into
master
4 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Viewing commit
021a8e00
Prev
Next
Show latest version
2 files
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
021a8e00
Fix stdio/scanf test case
· 021a8e00
8tab
authored
4 years ago
inner_scanf prematurely exited before parsing collected string
src/header/stdio/scanf.rs
+
1
−
1
Options
@@ -222,7 +222,7 @@ unsafe fn inner_scanf(
r
.commit
();
width
=
width
.map
(|
w
|
w
-
1
);
if
width
.map
(|
w
|
w
>
0
)
.unwrap_or
(
true
)
&&
!
read!
()
{
re
turn
Ok
(
matched
)
;
b
re
ak
;
}
}
Loading