Commit 441f28a
authored
[fix](cloud) Fix double assignment in recycler_service.cpp that cause… (#64168)
Fix undefined behavior in RecyclerServiceImpl::statistics_recycle where
'to_recycle_bytes' was assigned twice in the same expression:
int64_t to_recycle_bytes = to_recycle_bytes = ...
This triggers -Werror=sequence-point on GCC and breaks cloud build.
Introduced by: #554551 parent 11a038d commit 441f28a
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
239 | 239 | | |
240 | 240 | | |
241 | 241 | | |
242 | | - | |
| 242 | + | |
243 | 243 | | |
244 | 244 | | |
245 | 245 | | |
| |||
0 commit comments