mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 19:45:12 +00:00
AK: Fix accidentally-recursive call in BitStream
This commit is contained in:
parent
bc9f8f5c39
commit
0d3a8d5397
Notes:
sideshowbarker
2024-07-19 02:45:33 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/0d3a8d53973 Pull-request: https://github.com/SerenityOS/serenity/pull/3398 Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/nico
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
return discard_or_error(count);
|
||||
return m_stream.discard_or_error(count);
|
||||
}
|
||||
|
||||
u32 read_bits(size_t count)
|
||||
|
|
Loading…
Add table
Reference in a new issue