stemodem: remove NULL check

This commit is contained in:
Jeevaka Badrappan 2011-01-29 05:34:42 -08:00 committed by Marcel Holtmann
parent 3fbf85ed82
commit 124a9b1f0a
2 changed files with 0 additions and 13 deletions

View File

@ -383,9 +383,6 @@ static void ste_gprs_activate_primary(struct ofono_gprs_context *gc,
GSList *l;
struct conn_info *conn;
if (cbd == NULL)
goto error_no_device;
gcd->active_context = ctx->cid;
cbd->user = gc;
@ -448,9 +445,6 @@ static void ste_gprs_deactivate_primary(struct ofono_gprs_context *gc,
char buf[64];
GSList *l;
if (cbd == NULL)
goto error;
gcd->active_context = id;
cbd->user = gc;

View File

@ -187,9 +187,6 @@ static void ste_dial(struct ofono_voicecall *vc,
struct cb_data *cbd = cb_data_new(cb, data);
char buf[256];
if (cbd == NULL)
goto error;
cbd->user = vc;
if (ph->type == 145)
@ -214,7 +211,6 @@ static void ste_dial(struct ofono_voicecall *vc,
atd_cb, cbd, g_free) > 0)
return;
error:
g_free(cbd);
CALLBACK_WITH_FAILURE(cb, data);
@ -370,9 +366,6 @@ static void ste_send_dtmf(struct ofono_voicecall *vc, const char *dtmf,
int s;
char *buf;
if (cbd == NULL)
goto error;
/* strlen("AT+VTS=) = 7 + NULL */
buf = g_try_new(char, strlen(dtmf) + 8);
if (buf == NULL)