/* Prevent compiler warnings. */
o = o;
- if (!(outbuf = calloc(1, length_in)))
+ if (!data_in) {
+ g_warning("binary output: %s: data_in was NULL", __func__);
+ return SR_ERR;
+ }
+
+ if (!length_out) {
+ g_warning("binary output: %s: length_out was NULL", __func__);
+ return SR_ERR;
+ }
+
+ if (length_in == 0) {
+ g_warning("binary output: %s: length_in was 0", __func__);
+ return SR_ERR;
+ }
+
+ if (!(outbuf = calloc(1, length_in))) {
+ g_warning("binary output: %s: outbuf calloc failed", __func__);
return SR_ERR_MALLOC;
+ }
memcpy(outbuf, data_in, length_in);
*data_out = outbuf;