Fix: Use g_try_malloc in gisi/pipe.c

This commit is contained in:
Denis Kenzior 2010-03-16 17:37:44 -05:00
parent 9b8d8218a5
commit 8987fb696c
1 changed files with 4 additions and 1 deletions

View File

@ -211,7 +211,10 @@ GIsiPipe *g_isi_pipe_create(GIsiModem *modem, void (*created)(GIsiPipe *),
.type2 = type2,
.n_sb = 0,
};
GIsiPipe *pipe = g_malloc(sizeof(*pipe));
GIsiPipe *pipe = g_try_malloc(sizeof(GIsiPipe));
if (pipe == NULL)
return NULL;
pipe->client = g_isi_client_create(modem, PN_PIPE);
pipe->handler = created;