[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-03-01 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Roland Knall  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-03-01 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #26 from Gerrit Code Review  ---
Change 36251 merged by Tomasz Moń:
Qt: Fix import profile from directory crash

https://code.wireshark.org/review/36251

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-03-01 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #24 from Gerrit Code Review  ---
Change 36239 merged by Tomasz Moń:
Qt: Fix profile zip import on Windows

https://code.wireshark.org/review/36239

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-03-01 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #25 from Gerrit Code Review  ---
Change 36251 had a related patch set uploaded by Tomasz Moń:
Qt: Fix import profile from directory crash

https://code.wireshark.org/review/36251

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-29 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #23 from Gerrit Code Review  ---
Change 36238 merged by Anders Broman:
Qt: Fix import profile from directory crash

https://code.wireshark.org/review/36238

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-29 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #22 from Tomasz Mon  ---
(In reply to Roland Knall from comment #15)
> (In reply to Rasmus Jonsson from comment #14)
> > > Qt: Changes ProfileModel assert
> > 
> > That's the issue I found. I assumed the problem was with a release build
> > (where Q_ASSERT does nothing). I did want to ask about Q_ASSERT though,
> > should they generally be replaced since they make it hard/ impossible to
> > debug for example this feature?
> 
> In general, Q_ASSERT does work with and without debug mode. And no, they
> should not be generally be replaced, as they usually are guards preventing
> extreme scenarios to be played out. Which in this case was correct.

This is absolutely right. The assert is not the problem in itself, but the fact
that the condition was not met is the real issue.

Failing with assertions early on makes it easier to pinpoint the real issue.
This is because the problem stops working as soon as it notices that something
really bad happened, instead of continuing to work with bad data. In this case
the assert actually helped with debugging the problem, as it narrowed down the
search quite nicely.

> Something else must have been changed, as - when I developed the feature - I
> did not get empty file names, which in turn did not trigger the Q_DEBUG
> issue.

This seems to be related to how QFileInfo(QString &file) constructor handles
strings that end with directory separator. The underlying issue is fixed in
https://code.wireshark.org/review/36238

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-29 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #21 from Gerrit Code Review  ---
Change 36239 had a related patch set uploaded by Roland Knall:
Qt: Fix profile zip import on Windows

https://code.wireshark.org/review/36239

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-29 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #20 from Gerrit Code Review  ---
Change 36238 had a related patch set uploaded by Tomasz Moń:
Qt: Fix import profile from directory crash

https://code.wireshark.org/review/36238

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-29 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #19 from Gerrit Code Review  ---
Change 36236 merged by Roland Knall:
Qt: Changes ProfileModel assert

https://code.wireshark.org/review/36236

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-29 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #18 from Gerrit Code Review  ---
Change 36237 merged by Roland Knall:
Qt: Fix profile zip import on Windows

https://code.wireshark.org/review/36237

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-29 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #17 from Gerrit Code Review  ---
Change 36237 had a related patch set uploaded by Tomasz Moń:
Qt: Fix profile zip import on Windows

https://code.wireshark.org/review/36237

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-28 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #16 from Gerrit Code Review  ---
Change 36236 had a related patch set uploaded by Roland Knall:
Qt: Changes ProfileModel assert

https://code.wireshark.org/review/36236

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-28 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #15 from Roland Knall  ---
(In reply to Rasmus Jonsson from comment #14)
> > Qt: Changes ProfileModel assert
> 
> That's the issue I found. I assumed the problem was with a release build
> (where Q_ASSERT does nothing). I did want to ask about Q_ASSERT though,
> should they generally be replaced since they make it hard/ impossible to
> debug for example this feature?

In general, Q_ASSERT does work with and without debug mode. And no, they should
not be generally be replaced, as they usually are guards preventing extreme
scenarios to be played out. Which in this case was correct. Something else must
have been changed, as - when I developed the feature - I did not get empty file
names, which in turn did not trigger the Q_DEBUG issue. I am still
investigating, but for now, this should work. Can you confirm, that this also
works on windows as well? 

You could download one of the latest builds from
https://www.wireshark.org/download/automated/ to test it out.

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-28 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #14 from Rasmus Jonsson  ---
> Qt: Changes ProfileModel assert

That's the issue I found. I assumed the problem was with a release build (where
Q_ASSERT does nothing). I did want to ask about Q_ASSERT though, should they
generally be replaced since they make it hard/ impossible to debug for example
this feature?

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-28 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #13 from Gerrit Code Review  ---
Change 36233 merged by Roland Knall:
Qt: Changes ProfileModel assert

https://code.wireshark.org/review/36233

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-28 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #12 from Roland Knall  ---
(In reply to Betty DuBois from comment #11)
> Just tested importing a directory on my Mac running 10.12.6, and it crashed
> just like Windows.  I had always imported as a zip before.
> 
> Directory crashes both OS, zip fails in Windows, zip works perfectly in Mac.

I've fixed the directory crash on Mac. Hopefully it is the same for the zip
files.

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-28 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #11 from Betty DuBois  ---
Just tested importing a directory on my Mac running 10.12.6, and it crashed
just like Windows.  I had always imported as a zip before.

Directory crashes both OS, zip fails in Windows, zip works perfectly in Mac.

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-28 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #10 from Betty DuBois  ---
(In reply to Roland Knall from comment #9)
> I am currently looking into it, more hindered by the development system, but
> have a clue. Will be in 3.2.3 at this point

Thanks!

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-28 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Roland Knall  changed:

   What|Removed |Added

   Assignee|bugzilla-ad...@wireshark.or |rkn...@gmail.com
   |g   |

--- Comment #9 from Roland Knall  ---
I am currently looking into it, more hindered by the development system, but
have a clue. Will be in 3.2.3 at this point

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #8 from Tomasz Mon  ---
First commit that results in import from directory crashing is
g5c678288bcbf4fe870a1582cf31eed6eaa17841c. I didn't find a commit where import
from directory worked - before the faulty commit it always did import 0
profiles, skipped 1.

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #7 from Betty DuBois  ---
(In reply to Rasmus Jonsson from comment #6)
> > Do you mean the GTK+ UI? The Qt UI didn't have import profiles back then
> > AFAIK.
> 
> You're right, the Buster version doesn't. I made a separate RelWithDebInfo
> build. That one did not crash.

Importing profiles started in 3.2.0

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #6 from Rasmus Jonsson  ---
> Do you mean the GTK+ UI? The Qt UI didn't have import profiles back then
> AFAIK.

You're right, the Buster version doesn't. I made a separate RelWithDebInfo
build. That one did not crash.

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #5 from Tomasz Mon  ---
(In reply to Rasmus Jonsson from comment #2)
> It is not reproducible in 2.6.8

Do you mean the GTK+ UI? The Qt UI didn't have import profiles back then AFAIK.

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Rasmus Jonsson  changed:

   What|Removed |Added

   Assignee|was...@zom.bi   |bugzilla-ad...@wireshark.or
   ||g

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Rasmus Jonsson  changed:

   What|Removed |Added

 OS|All |Windows 10

--- Comment #4 from Rasmus Jonsson  ---
Disregard my report. Issue was a Q_ASSERT and running a debug build.

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Rasmus Jonsson  changed:

   What|Removed |Added

   Assignee|bugzilla-ad...@wireshark.or |was...@zom.bi
   |g   |

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #3 from Rasmus Jonsson  ---
Created attachment 17652
  --> https://bugs.wireshark.org/bugzilla/attachment.cgi?id=17652&action=edit
2 crashing and 1 good (empty) wireshark profiles

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Rasmus Jonsson  changed:

   What|Removed |Added

Version|Git |3.2.1

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Rasmus Jonsson  changed:

   What|Removed |Added

 OS|Windows 10  |All
Version|3.2.1   |Git
 CC||was...@zom.bi

--- Comment #2 from Rasmus Jonsson  ---
I did this (I was not able to view your GIF) and got a crash on current git
master. I copied the existing profiles from .config/wireshark/profiles/ and
either edited or kept them the same. It is not reproducible in 2.6.8 (Debian
stable).

Steps:
1. Edit > Configuration profiles... > Import
2. Select any directory that is not a valid profile directory and is not empty
3. Press Open
4. Wireshark crashes

Empty directory gives an error message (no profiles were found).

In both cases, they *are* added as new profiles (in .config/wireshark/profiles
and visible in the menu after restarting Wireshark).

Profiles are attached.

Version 3.3.0 (v3.3.0rc0-608-gf8f6ce55defa) 
Copyright 1998-2020 Gerald Combs  and contributors.
License GPLv2+: GNU GPL version 2 or later
 This is free software; see the
source for copying conditions. There is NO warranty; not even for
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
Compiled (64-bit) with Qt 5.11.3, with libpcap, with POSIX capabilities
(Linux), with libnl 3, with GLib 2.58.3, with zlib 1.2.11, with SMI 0.4.8, with
c-ares 1.14.0, with Lua 5.2.4, with GnuTLS 3.6.7 and PKCS #11 support, with
Gcrypt 1.8.4, with MIT Kerberos, with MaxMind DB resolver, with nghttp2 1.36.0,
without brotli, with LZ4, without Zstandard, with Snappy, with libxml2 2.9.4,
with QtMultimedia, without automatic updates, with SpeexDSP (using bundled
resampler). 
Running on Linux 4.19.0-8-amd64, with Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz
(with SSE4.2), with 7678 MB of physical memory, with locale en_US.UTF-8, with
light display mode, without HiDPI, with libpcap version 1.8.1, with GnuTLS
3.6.7, with Gcrypt 1.8.4, with zlib 1.2.11, binary plugins supported (18
loaded). Built using gcc 8.3.0.

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-27 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Alexis La Goutte  changed:

   What|Removed |Added

 CC||alexis.lagou...@gmail.com,
   ||rkn...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-26 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Tomasz Mon  changed:

   What|Removed |Added

 CC||deso...@gmail.com
 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-25 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

Betty DuBois  changed:

   What|Removed |Added

   See Also||https://bugs.wireshark.org/
   ||bugzilla/show_bug.cgi?id=14
   ||453

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe

[Wireshark-bugs] [Bug 16410] Importing profiles in Windows - zip files fail and from directory crashes Wireshark

2020-02-25 Thread bugzilla-daemon
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16410

--- Comment #1 from Betty DuBois  ---
Just to be sure it was not something in my profile (the students were copying
from me), I just tested it with copies of a completely blank Default profile
and the results were the same.

-- 
You are receiving this mail because:
You are watching all bug changes.___
Sent via:Wireshark-bugs mailing list 
Archives:https://www.wireshark.org/lists/wireshark-bugs
Unsubscribe: https://www.wireshark.org/mailman/options/wireshark-bugs
 mailto:wireshark-bugs-requ...@wireshark.org?subject=unsubscribe