port-serial-at: make mm_port_serial_at_command_finish() transfer ownership
This will make it slightly easier to port mm_port_serial_at_command() to use GTask, since we won't have to keep a pointer to the result in GTask after _finish() has been called. In most cases the caller needs the value anyway, so this doesn't add too much hasle.
This commit is contained in:

committed by
Aleksander Morgado

parent
e1e7bc8de6
commit
c40876de95
@@ -110,8 +110,8 @@ static void
|
||||
at_command_ready (MMPortSerialAt *serial_at,
|
||||
GAsyncResult *res)
|
||||
{
|
||||
const gchar *response;
|
||||
GError *error = NULL;
|
||||
g_autofree gchar *response = NULL;
|
||||
GError *error = NULL;
|
||||
|
||||
response = mm_port_serial_at_command_finish (serial_at, res, &error);
|
||||
if (response)
|
||||
|
Reference in New Issue
Block a user