*/
for (stream = 1; stream < 4; ++stream) {
if (ip[stream] < ip[stream - 1])
- break;
+ goto _out;
}
}
} while (op[3] < olimit);
}
+_out:
+
/* Save the final values of each of the state variables back to args. */
ZSTD_memcpy(&args->bits, &bits, sizeof(bits));
ZSTD_memcpy(&args->ip, &ip, sizeof(ip));
*/
for (stream = 1; stream < 4; ++stream) {
if (ip[stream] < ip[stream - 1])
- break;
+ goto _out;
}
}
} while (op[3] < olimit);
}
+_out:
+
/* Save the final values of each of the state variables back to args. */
ZSTD_memcpy(&args->bits, &bits, sizeof(bits));
ZSTD_memcpy(&args->ip, &ip, sizeof(ip));