Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
42d1a163
Commit
42d1a163
authored
Aug 06, 2021
by
Ned Konz
Committed by
Damien George
Aug 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stm32/mbedtls: Fix compile warning about uninitialized val.
parent
a0cd18c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
ports/stm32/mbedtls/mbedtls_port.c
ports/stm32/mbedtls/mbedtls_port.c
+1
-1
No files found.
ports/stm32/mbedtls/mbedtls_port.c
View file @
42d1a163
...
...
@@ -80,7 +80,7 @@ void m_free_mbedtls(void *ptr_in) {
}
int
mbedtls_hardware_poll
(
void
*
data
,
unsigned
char
*
output
,
size_t
len
,
size_t
*
olen
)
{
uint32_t
val
;
uint32_t
val
=
0
;
int
n
=
0
;
*
olen
=
len
;
while
(
len
--
)
{
...
...
Write
Preview
Markdown
is supported
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