Hi Johan,
On 03/18/2014 01:48 PM, Johan Hedberg wrote:
Hi Ravi,
On Tue, Mar 18, 2014, Ravi kumar Veeramally wrote:
+static bool string_to_hal(const char *str, struct hal_string *hstr,
+ ssize_t *len)
+{
+ if (!hstr || !len)
+ return false;
+
+ if (!str) {
+ hstr->len = 0;
+ return true;
+ }
+
+ hstr->len = strlen(str) + 1;
+ *len += hstr->len;
+ if (*len > IPC_MTU)
+ return false;
Usually we design APIs so that a failure means the return parameters
were left untouched. The way you've implemented this here the caller
couldn't know if *len or hstr->len were modified in case false is
returned. We should be more predictable than that. So please fix up the
function so that it only touches the parameters if true is returned.
Ok, I'll fix that.
Thanks,
Ravi.
--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html