mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 04:46:11 +00:00
Convert if-block to early return
This commit is contained in:
parent
7119017eae
commit
21ab0e2a9e
@ -754,7 +754,9 @@ void HexWidget::w_writeBytes()
|
|||||||
const int offset = bytes.startsWith("\\x") ? 2 : 0;
|
const int offset = bytes.startsWith("\\x") ? 2 : 0;
|
||||||
const int incr = offset + 2;
|
const int incr = offset + 2;
|
||||||
const int bytes_size = qMin(bytes.size() / incr, size);
|
const int bytes_size = qMin(bytes.size() / incr, size);
|
||||||
if (ok && bytes_size) {
|
if (!ok || !bytes_size) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
uint8_t *buf = (uint8_t *)malloc(static_cast<size_t>(bytes_size));
|
uint8_t *buf = (uint8_t *)malloc(static_cast<size_t>(bytes_size));
|
||||||
if (!buf) {
|
if (!buf) {
|
||||||
return;
|
return;
|
||||||
@ -766,7 +768,6 @@ void HexWidget::w_writeBytes()
|
|||||||
rz_core_write_at(core, getLocationAddress(), buf, bytes_size);
|
rz_core_write_at(core, getLocationAddress(), buf, bytes_size);
|
||||||
free(buf);
|
free(buf);
|
||||||
refresh();
|
refresh();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void HexWidget::w_writeZeros()
|
void HexWidget::w_writeZeros()
|
||||||
|
Loading…
Reference in New Issue
Block a user