printers: Fix autoptr object not being initialized to NULL.
Won't cause a problem in this case but should be done for safety.
Introduced in ad226b420c
This commit is contained in:
parent
f98ed29163
commit
7bbbef5fde
1 changed files with 1 additions and 1 deletions
|
@ -2710,7 +2710,7 @@ get_all_ppds_async (GCancellable *cancellable,
|
|||
gpointer user_data)
|
||||
{
|
||||
GAPData *data;
|
||||
g_autoptr(GThread) thread;
|
||||
g_autoptr(GThread) thread = NULL;
|
||||
g_autoptr(GError) error = NULL;
|
||||
|
||||
data = g_new0 (GAPData, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue