simfs: Group lines logically

This commit is contained in:
Denis Kenzior 2010-10-11 20:14:24 -05:00
parent 096634e798
commit 38fad92882
1 changed files with 0 additions and 3 deletions

View File

@ -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) {