Change-Id: I91cc461446c8a98ecc18959a31c8d2c39b7afd5b
Name: capi-media-metadata-editor
Summary: A metadata editor library in Tizen Native API
-Version: 0.2.1
+Version: 0.2.2
Release: 0
Group: Multimedia/API
License: Apache-2.0
{
int ret = METADATA_EDITOR_ERROR_NONE;
GError *error = NULL;
+ char *mime_type = NULL;
- ret = __metadata_editor_get_picture_type(path, type);
+ ret = __metadata_editor_get_picture_type(path, &mime_type);
if (ret != METADATA_EDITOR_ERROR_NONE)
return ret;
ret = METADATA_EDITOR_ERROR_PERMISSION_DENIED;
g_error_free (error);
+ g_free(mime_type);
+
+ return ret;
}
+ *type = mime_type;
+
return ret;
}