Comment 1 for bug 288070

Revision history for this message
Chris Coulson (chrisccoulson) wrote :

Thank you for your bug report. This crash is due to a bug in libflickrnet, so I'm re-assinging. F-Spot seems to bundle it's own patched libflickrnet which doesn't have this problem, but F-Spot isn't built against this version.

FYI, there is a patch in the upstream issue tracker for libflickrnet to make Zoomr support work. This patch will fix the crasher you see, in particular, this bit of the patch will fix it:

@@ -443,7 +443,8 @@
             {

                 // This is needed in the Compact Framework

                 // See for more details: http://msdn2.microsoft.com/en-us/library/1afx2b0f.aspx

- req.GetRequestStream().Close();

+ if (req.Method=="POST")

+ req.GetRequestStream().Close();

             }