http://bugs.winehq.org/show_bug.cgi?id=18629
Summary: Playing RTP stream using QuickTime crashes Xserver
Product: Wine
Version: 1.1.22
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: panagiotis(a)gmail.com
After installing QuickTime 7.2.0.240 using the winetricks script,
I tried playing an RTP stream by selecting "Open by URL" and
entering the URL ("http://localhost/test.sdp").
This caused my Xserver to crash. This problem is reproducable, in other words,
it crashes my Xserver every time I try to access http://localhost/test.sdp.
I can play video files directly with QuickTime without any crashes. There are
some other unrelated issues, involving one of my two screens of my dual-screen
setup apparently being overdrawn in black, which I can "clean"/"get redrawn" by
moving my cursor around.
I'm using Ubuntu 8.10 on an AMD64 system which uses Xorg server 1.5.2.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18621
Summary: Steam crashed on exit with Unimplemented function
user32.dll.DialogBoxParamW
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://cdn.steampowered.com/download/SteamInstall.msi
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh+winehqdotorg(a)gmail.com
fixme:ntdll:RtlNtStatusToDosErrorNoTeb no mapping for c000013a
err:module:DelayLoadFailureHook failed to delay load user32.dll.DialogBoxParamW
wine: Call from 0x7ee0c583 to unimplemented function
user32.dll.DialogBoxParamW, aborting
wine: Unimplemented function user32.dll.DialogBoxParamW called at address
0x7ee0c583 (thread 005f), starting debugger...
Happened on a forced exit. Couldn't get it to reproduce after that.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18624
Summary: TomeRaider3 crashes on startup
Product: Wine
Version: 1.1.22
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugzilla_new(a)arcor.de
Created an attachment (id=21315)
--> (http://bugs.winehq.org/attachment.cgi?id=21315)
The log on starting TomeRaider3
Ay you can see below, I have the problem that the newsbook reader "TomeRaider3"
(v3.3.9, newest at the moment) crashes on startup.
The log.txt is atached.
I also made a backtrace with the command "WINEDEBUG=+relay,+seh,+tid wine
TomeRaider3.exe &> /tmp/output.txt", but the output.txt file has 136,4
Megabyte, because of that i didnt attach it. If you are interested, I can
upload it on my webspace or somewhere else.
Greetings
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9158
Sjors Gielen <dazjorz(a)dazjorz.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dazjorz(a)dazjorz.com
--- Comment #19 from Sjors Gielen <dazjorz(a)dazjorz.com> 2009-05-24 13:39:23 ---
(In reply to comment #18)
> I've been thinking about how to handle FILE_ATTRIBUTE_HIDDEN in Wine. In
> Nautilus (and probably other file managers) you can hide files by creating a
> file called ".hidden" and listing the names of the files you wish to hide.
>
> Once possible proper fix for this bug (aside from the workaround posted) is to
> alter create_file (server/file.c) to add an entry to a .hidden file in the
> destination directory when a file is created with FILE_ATTRIBUTE_HIDDEN set.
> Then FindFirstFile/FindNextFile could check this file (if it exists) and ignore
> any files listed.
>
> This should give the behaviour needed without having to rename the files so
> they are prefixed with a dot.
As far as I can see, '$shtdwn$.reg' is not prefixed with a dot or anything, so
that can't be the problem here... Right?
--- Comment #20 from Austin English <austinenglish(a)gmail.com> 2009-05-24 14:16:32 ---
(In reply to comment #19)
> As far as I can see, '$shtdwn$.reg' is not prefixed with a dot or anything, so
> that can't be the problem here... Right?
The problem is the installer expects the file to be hidden, in the Windows way,
e.g., not a '.', but given the hidden attribute, which Wine does not support.
--- Comment #21 from Sjors Gielen <dazjorz(a)dazjorz.com> 2009-05-25 15:24:50 ---
(In reply to comment #20)
> The problem is the installer expects the file to be hidden, in the Windows way,
> e.g., not a '.', but given the hidden attribute, which Wine does not support.
You said:
> This should give the behaviour needed without having to rename the files so
> they are prefixed with a dot.
I thought this was the way Wine does it now :)
What about this: Wine gets (for case insensitivity) a solution like ciopfs: all
files are stored in lower case, and then Wine keeps a database file (sqlite or
so?) containing the original filename and other non-ext properties, like
whether they are hidden. Using SQLite, it wouldn't be too slow; Wine doesn't
need to read all files in the directory since the files are lowercase.
It only needs to search if the lowercase file does not exist, in which case it
does search and if it finds a file, it renames it to lowercase and adds it to
the database to speed up future searches; this is necessary to merge from older
Wine versions. This solution will only be noticeably slow when an application
continuously asks for a non-existent file; and it will be just as slow as the
old Wine solution. It will also be backwards compatible, only older versions of
Wine will not return the original filename but the lower case one (since they
search the whole directory anyway).
Any objections, except that SQLite support is needed?
--- Comment #22 from Vitaliy Margolen <vitaliy(a)kievinfo.com> 2009-05-25 16:05:44 ---
(In reply to comment #21)
> Any objections, except that SQLite support is needed?
You forgetting that Wine doesn't have it's own FS. Nothing prevents a program
outside of Wine to copy a file into "C:".
Also what about the rest of the root file system (/)?
This can only be supported for files created from within Wine. The actual
attributes can be stored in the special hidden file in the same directory
(preferred) or the globally (not portable).
--- Comment #23 from Sjors Gielen <dazjorz(a)dazjorz.com> 2009-05-25 17:48:39 ---
(In reply to comment #22)
> (In reply to comment #21)
> > Any objections, except that SQLite support is needed?
> You forgetting that Wine doesn't have it's own FS. Nothing prevents a program
> outside of Wine to copy a file into "C:".
That's only a real problem as far as that program only writes lowercased
files... I think that's an acceptable thing, isn't it?
> Also what about the rest of the root file system (/)?
It would just work like wine works now; readdir() I guess. :)
> This can only be supported for files created from within Wine. The actual
> attributes can be stored in the special hidden file in the same directory
> (preferred) or the globally (not portable).
Ok. I agree the main flaw in the idea (the fact that from outside wine, the
case insensitivity isn't enforced) makes it a no-go. I could implement this
special hidden file support (or even generally, extra file flag support) in
Wine, but it may take a moment since I'm totally not accustomed to Wine's
source, I've never seen a bit of it.
If there's anything I should read about the plans related to this before I
start, please drop me some links and I'll get coding. (that's apart from the
normal stuff a beginning Wine developer should read, I can find those on my own
;) )
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9158
Sjors Gielen <dazjorz(a)dazjorz.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dazjorz(a)dazjorz.com
--- Comment #19 from Sjors Gielen <dazjorz(a)dazjorz.com> 2009-05-24 13:39:23 ---
(In reply to comment #18)
> I've been thinking about how to handle FILE_ATTRIBUTE_HIDDEN in Wine. In
> Nautilus (and probably other file managers) you can hide files by creating a
> file called ".hidden" and listing the names of the files you wish to hide.
>
> Once possible proper fix for this bug (aside from the workaround posted) is to
> alter create_file (server/file.c) to add an entry to a .hidden file in the
> destination directory when a file is created with FILE_ATTRIBUTE_HIDDEN set.
> Then FindFirstFile/FindNextFile could check this file (if it exists) and ignore
> any files listed.
>
> This should give the behaviour needed without having to rename the files so
> they are prefixed with a dot.
As far as I can see, '$shtdwn$.reg' is not prefixed with a dot or anything, so
that can't be the problem here... Right?
--- Comment #20 from Austin English <austinenglish(a)gmail.com> 2009-05-24 14:16:32 ---
(In reply to comment #19)
> As far as I can see, '$shtdwn$.reg' is not prefixed with a dot or anything, so
> that can't be the problem here... Right?
The problem is the installer expects the file to be hidden, in the Windows way,
e.g., not a '.', but given the hidden attribute, which Wine does not support.
--- Comment #21 from Sjors Gielen <dazjorz(a)dazjorz.com> 2009-05-25 15:24:50 ---
(In reply to comment #20)
> The problem is the installer expects the file to be hidden, in the Windows way,
> e.g., not a '.', but given the hidden attribute, which Wine does not support.
You said:
> This should give the behaviour needed without having to rename the files so
> they are prefixed with a dot.
I thought this was the way Wine does it now :)
What about this: Wine gets (for case insensitivity) a solution like ciopfs: all
files are stored in lower case, and then Wine keeps a database file (sqlite or
so?) containing the original filename and other non-ext properties, like
whether they are hidden. Using SQLite, it wouldn't be too slow; Wine doesn't
need to read all files in the directory since the files are lowercase.
It only needs to search if the lowercase file does not exist, in which case it
does search and if it finds a file, it renames it to lowercase and adds it to
the database to speed up future searches; this is necessary to merge from older
Wine versions. This solution will only be noticeably slow when an application
continuously asks for a non-existent file; and it will be just as slow as the
old Wine solution. It will also be backwards compatible, only older versions of
Wine will not return the original filename but the lower case one (since they
search the whole directory anyway).
Any objections, except that SQLite support is needed?
--- Comment #22 from Vitaliy Margolen <vitaliy(a)kievinfo.com> 2009-05-25 16:05:44 ---
(In reply to comment #21)
> Any objections, except that SQLite support is needed?
You forgetting that Wine doesn't have it's own FS. Nothing prevents a program
outside of Wine to copy a file into "C:".
Also what about the rest of the root file system (/)?
This can only be supported for files created from within Wine. The actual
attributes can be stored in the special hidden file in the same directory
(preferred) or the globally (not portable).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3235
Nikolay Sivov <bunglehead(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #21274|0 |1
is obsolete| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3235
Nikolay Sivov <bunglehead(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #22 from Nikolay Sivov <bunglehead(a)gmail.com> 2009-05-25 15:52:59 ---
(In reply to comment #21)
> Seems to be working great here.
Ok. Reopen it if any related problem will be observed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3235
--- Comment #21 from Igor Tarasov <tarasov.igor(a)gmail.com> 2009-05-25 15:45:54 ---
Seems to be working great here.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9027
Ken Sharp <kennybobs(a)o2.co.uk> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #20405|0 |1
is obsolete| |
--- Comment #36 from Ken Sharp <kennybobs(a)o2.co.uk> 2009-05-25 15:45:21 ---
Created an attachment (id=21312)
--> (http://bugs.winehq.org/attachment.cgi?id=21312)
wine-1.1.22-51-g85b6189 +wave +dmloader +dsound +dmime +dmusic
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18502
Summary: EVE Online refuses to run on GeForce 8400 GS, claims
Shader Model 2 not supported
Product: Wine
Version: 1.1.21
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: asuffield(a)suffields.me.uk
Created an attachment (id=21142)
--> (http://bugs.winehq.org/attachment.cgi?id=21142)
glxinfo -l
EVE at latest revision (88737), nvidia drivers at 180.44, card does in fact
support shader model 2, pixel shaders enabled in wine config. For some reason
wine is not passing on the required capabilities to the application - but I
can't see which one it is objecting to, nothing in the log seems related. Usual
data attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.