Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
No build reason found for SLE-Module-Development-Tools-OBS:x86_64
home:Alexander_Naumov:SLE12
gvfs
0001-http-Allow-seek-past-end-of-file.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0001-http-Allow-seek-past-end-of-file.patch of Package gvfs
From 0775a4adee787a5032ed876db1e3bac237e60ed0 Mon Sep 17 00:00:00 2001 From: Ross Lagerwall <rosslagerwall@gmail.com> Date: Sun, 8 Dec 2013 13:04:45 +0200 Subject: [PATCH] http: Allow seek past end of file Handle a read after a seek past the end of the file by ignoring the requested range not satisfiable http error (416) and simply returning 0. https://bugzilla.gnome.org/show_bug.cgi?id=710534 --- daemon/gvfshttpinputstream.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/daemon/gvfshttpinputstream.c b/daemon/gvfshttpinputstream.c index 222688a..3101f34 100644 --- a/daemon/gvfshttpinputstream.c +++ b/daemon/gvfshttpinputstream.c @@ -340,6 +340,14 @@ read_send_callback (GObject *object, } if (!SOUP_STATUS_IS_SUCCESSFUL (priv->msg->status_code)) { + if (priv->msg->status_code == SOUP_STATUS_REQUESTED_RANGE_NOT_SATISFIABLE) + { + g_input_stream_close (priv->stream, NULL, NULL); + g_task_return_int (task, 0); + g_clear_object (&priv->stream); + g_object_unref (task); + return; + } g_task_return_new_error (task, SOUP_HTTP_ERROR, priv->msg->status_code, -- 1.8.4
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor