Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
7370fd55
Commit
7370fd55
authored
Jul 04, 2015
by
Paul Sokolovsky
Browse files
ubinascii: Fix a shadowed variable case.
parent
e284a95c
Changes
1
Hide whitespace changes
Inline
Side-by-side
extmod/modubinascii.c
View file @
7370fd55
...
...
@@ -173,7 +173,7 @@ mp_obj_t mod_binascii_b2a_base64(mp_obj_t data) {
// Second pass, we convert number base 64 values to actual base64 ascii encoding
out
=
(
byte
*
)
vstr
.
buf
;
for
(
mp_uint_t
i
=
vstr
.
len
-
1
;
i
--
;)
{
for
(
mp_uint_t
j
=
vstr
.
len
-
1
;
j
--
;)
{
if
(
*
out
<
26
)
{
*
out
+=
'A'
;
}
else
if
(
*
out
<
52
)
{
...
...
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