diff options
author | Denis Kenzior <denkenz@gmail.com> | 2009-10-05 16:20:55 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-10-05 16:20:55 -0500 |
commit | 60118757b2502f9582a567bcaec6b9f89a7d6650 (patch) | |
tree | fb7cb724d7338fd6f63fc2bfbc2f39618c8abae3 /src/sim.c | |
parent | af1b6a228a8073c1e210dac8696b907937b28336 (diff) | |
download | ofono-60118757b2502f9582a567bcaec6b9f89a7d6650.tar.bz2 |
Fix: Don't crash when cached ef structure differs
Diffstat (limited to 'src/sim.c')
-rw-r--r-- | src/sim.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1474,7 +1474,7 @@ static gboolean sim_op_check_cached(struct ofono_sim *sim) if (error_type != OFONO_ERROR_TYPE_NO_ERROR || structure != op->structure) { ret = TRUE; - cb(0, 0, 0, 0, 0, 0); + cb(0, 0, 0, 0, 0, op->userdata); goto cleanup; } |