diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2023-11-24 08:37:53 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2023-11-24 08:37:53 +0100 |
commit | 1bf62485f701b52ae27433e3570ac24cd7da886f (patch) | |
tree | 0f7be6ad3efd0c75fdad81d8bef5513d477f8d11 /src/camera/GPhoto.vala | |
parent | 008bc99860fd353a5da5d06e6be5937f4a358aed (diff) | |
parent | a7f185a9852392d1d6290771db6289c97c401a36 (diff) |
Merge branch 'release/debian/0.32.3-1'debian/0.32.3-1
Diffstat (limited to 'src/camera/GPhoto.vala')
-rw-r--r-- | src/camera/GPhoto.vala | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/camera/GPhoto.vala b/src/camera/GPhoto.vala index 702f307..5c0b9a8 100644 --- a/src/camera/GPhoto.vala +++ b/src/camera/GPhoto.vala @@ -92,21 +92,9 @@ namespace GPhoto { } } - // For CameraFileInfoFile, CameraFileInfoPreview, and CameraStorageInformation. See: - // https://bugzilla.gnome.org/show_bug.cgi?id=716252 - // https://bugzilla.redhat.com/show_bug.cgi?id=585676 - // https://sourceforge.net/tracker/?func=detail&aid=3000198&group_id=8874&atid=108874 - public const int MAX_FILENAME_LENGTH = 63; - public const int MAX_BASEDIR_LENGTH = 255; - public bool get_info(Context context, Camera camera, string folder, string filename, out CameraFileInfo info) throws Error { - if (folder.length > MAX_BASEDIR_LENGTH || filename.length > MAX_FILENAME_LENGTH) { - info = {}; - - return false; - } - + Result res = camera.get_file_info(folder, filename, out info, context); if (res != Result.OK) throw new GPhotoError.LIBRARY("[%d] Error retrieving file information for %s/%s: %s", |