tests: Fix a typo on a dereferencing assignment

Otherwise the assignment is pointless. Spotted by cppcheck.
This commit is contained in:
Philip Withnall 2016-08-13 10:24:23 +02:00
parent a42b6eab66
commit 5cdf0efaab

View File

@ -646,7 +646,7 @@ read_all_from_fd (gint fd, gsize *out_len, GError **error)
error:
if (out_len != NULL)
out_len = 0;
*out_len = 0;
g_string_free (str, TRUE);
return NULL;
}