[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-12-30 Thread Bug Watch Updater
** Changed in: nautilus-open-terminal (Debian) Status: New => Fix Released -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-09-09 Thread Maxim Levitsky
Bug fixed in karamic, but isn't fixed in jaunty. -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.co

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-30 Thread Baptiste Mille-Mathias
** Changed in: nautilus-open-terminal (Ubuntu) Status: Confirmed => Fix Released -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs m

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-23 Thread Christian Neumair
OK, thanks - I just dediced to use Maxim Levitsky's URI parsing implementation upstream, and added a truncation of the password for the case of a sftp://user:p...@host/path URI. That said, the GnomeVFS dependency is now gone. A new 0.13 release was made as well. I think this bug report can be close

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-19 Thread Iain Lane
Is this still necessary after we got 0.12? I see this: + Remote SSH terminal: Work correctly with non-standard SSH ports manually defined in ~/.ssh/config If so, please update the diff (and post it to the Debian bug if you are able) and I will sponsor straight away. Thanks a lot for

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-16 Thread Maxim Levitsky
@Christian Neumair ssh:// doesn't seem to work at nautilus, only sftp:// does, and old code didn't parse it ether. I fully agree that path parsing I must say 'must' be done in a library. Doing so manually like I did, isn't good for maintenance. But, for a temporary solution I guess that will be

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-16 Thread Christian Neumair
The attached file is a simple test application for the routine proposed by Maxim Levitsky. I agree with maleadt's review: It seems to work fine, except for the port parsing which can be fixed via '*port=atoi(tmp);'. Another aspect is that you may want to support the "ssh" scheme, which is equivalen

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-15 Thread Christian Neumair
I am the Nautilus-Open-Terminal maintainer. It looks like the patch proposed in bug 309529 comment 18 introduces custom URI parsing, instead of reusing the GnomeVFS functions, probably for completely migrating away from GnomeVFS. We should instead wait until the string parsing landed in glib before

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-14 Thread Bug Watch Updater
** Changed in: nautilus-open-terminal (Debian) Status: Unknown => New -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-14 Thread Iain Lane
I just reported it to Debian. After the maintainer responds, we can look at uploading into Ubuntu if he doesn't make a -6 upload straight away. Thanks for your contribution here. ** Bug watch added: Debian Bug tracker #528627 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528627 ** Also affe

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-13 Thread Iain Lane
The best place for such patches to find a home is upstream - that way everyone benefits. -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-12 Thread Maxim Levitsky
@Iain Lane I didn't write this gio port I have only fixed the function that deals with ssh patchnames. I just want that this annoying bug will be fixed, and ubuntu made slightly better. -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug no

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-12 Thread Iain Lane
Also if and when it is accepted upstream, please forward the patch to Debian too. Then I will sponsor :) -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-12 Thread Iain Lane
Is this change upstream? If not, please report a bug and attach the patch there. I'm not comfortable about including without some kind of upstream comment. -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a memb

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-10 Thread Maxim Levitsky
** Changed in: nautilus-open-terminal (Ubuntu) Assignee: Ubuntu Sponsors for main (ubuntu-main-sponsors) => (unassigned) -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is su

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-05-10 Thread Maxim Levitsky
** Changed in: nautilus-open-terminal (Ubuntu) Assignee: (unassigned) => Ubuntu Sponsors for main (ubuntu-main-sponsors) -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is su

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-27 Thread maleadt
Almost good: the host gets stripped correctly, but doesnt connect to the right port. E.g., opening a sftp browser at "u...@foo.no-ip.bar:12345/data" spawns "ssh u...@foo.no-ip.bar -p 22 -t cd '/folder' && $SHELL -l" When chaging "port=atoi(tmp)" to "*port=atoi(tmp)", all works perfectly! -- nau

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-27 Thread Maxim Levitsky
Ok, here is the rewrite: I 'hope' it works ** Attachment added: "debdiff.diff" http://launchpadlibrarian.net/26042642/debdiff.diff -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, w

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-27 Thread Maxim Levitsky
Yep, I ported that piece of code to 'C', and this what I get: User="user" Port="12345/folder" Path="/folder" Host="foo.no-ip.ba I really feel like rewriting this code properly #include #include #include int main() { char uri[] = {"sftp://u...@foo.no-ip.bar:12345/folder"; };

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-27 Thread Maxim Levitsky
Could very well be, I'll see what that function does in that case -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bug

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-27 Thread maleadt
user/pass authentication, memorized by gnome-keyring. The share its address: sftp://u...@foo.no-ip.bar:12345/folder It might be the custom port switch which kills the parsing? -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification b

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-27 Thread Maxim Levitsky
sad that I didn't look at your fix, because I found and fixed same bug, but here it works too. @maleadt, when I expiremented with the buggy function I have also seen same behavior. Could you post the url of your ssh share (You can replace username, and any other sensitive names with something el

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-27 Thread maleadt
Hi shemgp, and thanks for your effort writing this patch. It doesn't solve the issue for me though, the terminal now starts, but closes immediately, without crashing nautilus though. Valgrind reveals no illegal operations, it seems like a triggered assertion. I used the deb at your ppa (amd64).

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-16 Thread nanog
The patched deb from shemgb fixes problem for 386 and x64. -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-08 Thread shemgp
Oops, forgot the bug # in the other one. There's a test build in PPA too: https://launchpad.net/~shemgp/+archive/ppa ** Attachment added: "A more correct debdiff" http://launchpadlibrarian.net/25093155/nautilus-open-terminal_0.9-3ubuntu2.debdiff -- nautilus crashed with SIGSEGV in strlen()

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-04-08 Thread shemgp
Here's a possible debdiff. It works for me, though I'm not sure if this is how to patch a patch in a debdiff. ** Attachment added: "nautilus-open-terminal_0.9-3ubuntu2.debdiff" http://launchpadlibrarian.net/25015179/nautilus-open-terminal_0.9-3ubuntu2.debdiff -- nautilus crashed with SIGSEG

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-03-23 Thread Pedro Villavicencio
confirmed as per duplicates. ** Changed in: nautilus-open-terminal (Ubuntu) Status: New => Confirmed -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubunt

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-03-02 Thread Pedro Villavicencio
** Changed in: nautilus-open-terminal (Ubuntu) Sourcepackagename: nautilus => nautilus-open-terminal -- nautilus crashed with SIGSEGV in strlen() https://bugs.launchpad.net/bugs/333462 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-02-23 Thread Apport retracing service
StacktraceTop:strlen () from /lib/libc.so.6 strdup () from /lib/libc.so.6 open_terminal_callback (item=0x2688b20, IA__g_closure_invoke (closure=0x31265c0, signal_emit_unlocked_R (node=0x1bf8020, detail=0, ** Attachment removed: "CoreDump.gz" http://launchpadlibrarian.net/23014783/CoreDump.g

[Bug 333462] Re: nautilus crashed with SIGSEGV in strlen()

2009-02-23 Thread Mathieu Marquer
** Attachment added: "CoreDump.gz" http://launchpadlibrarian.net/23014783/CoreDump.gz ** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/23014784/Dependencies.txt ** Attachment added: "Disassembly.txt" http://launchpadlibrarian.net/23014785/Disassembly.txt ** Attachm