From: Denis Kenzior Date: Tue, 12 Oct 2010 01:14:24 +0000 (-0500) Subject: simfs: Group lines logically X-Git-Tag: 0.32~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=38fad92882493716d51055b1659d7429e0b61763;p=platform%2Fupstream%2Fofono.git simfs: Group lines logically --- diff --git a/src/simfs.c b/src/simfs.c index d743cd4..473fe08 100644 --- a/src/simfs.c +++ b/src/simfs.c @@ -763,9 +763,7 @@ char *sim_fs_get_cached_image(struct sim_fs *fs, int id) path = g_strdup_printf(SIM_IMAGE_CACHE_PATH, imsi, phase, id); TFR(stat(path, &st_buf)); - fd = TFR(open(path, O_RDONLY)); - g_free(path); if (fd < 0) @@ -780,7 +778,6 @@ char *sim_fs_get_cached_image(struct sim_fs *fs, int id) } len = TFR(read(fd, buffer, image_length)); - TFR(close(fd)); if (len != image_length) {