xgetXXbyYY: Avoid duplicated error handling block
The error handling is performed after the loop. By just calling break it is possible to reuse the error handling if status is not ERANGE. Signed-off-by: Samanta Navarro <ferivoz@riseup.net>
This commit is contained in:
parent
e73a2194b3
commit
dcc90658fd
@ -81,9 +81,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (ERANGE != status) {
|
if (ERANGE != status) {
|
||||||
free (buffer);
|
break;
|
||||||
free (result);
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (length <= ((size_t)-1 / 4)) {
|
if (length <= ((size_t)-1 / 4)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user