Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ESP32-audioI2S
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
ESP32-audioI2S
Commits
ed1edd2a
Unverified
Commit
ed1edd2a
authored
Nov 21, 2022
by
Wolle
Committed by
GitHub
Nov 21, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ESP32 Webradio Error #414
typo
parent
6646cf54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/Audio.h
src/Audio.h
+1
-1
No files found.
src/Audio.h
View file @
ed1edd2a
...
...
@@ -377,7 +377,7 @@ private:
for
(
int
i
=
0
;
i
<
numBytes
;
i
++
)
{
result
+=
*
(
base
+
i
)
<<
(
numBytes
-
i
-
1
)
*
shiftLeft
;
}
if
(
result
>
SIZE_MAX
)
{
log_e
(
"range overflow"
)
,
result
=
0
;};
// overflow
if
(
result
>
SIZE_MAX
)
{
log_e
(
"range overflow"
)
;
result
=
0
;}
// overflow
return
(
size_t
)
result
;
}
...
...
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