http://bugs.winehq.com/show_bug.cgi?id=1190
------- Additional Comments From winebug(a)flonet.net 2003-28-06 07:38 -------
Bug comments restored from Gmane.org:
When running regsvr32 with MSOFD.DLL, that comes with MSMoney 2000, it crashes
with NULL pointer dereference in SearchPathW. Turns out DllRegisterServer calls
SearchPathW with all NULL parameters except a filename. It appears to be
crashing on the last line of the function, return strlenW(buffer). This is with
wine 20021125.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1114
------- Additional Comments From z_god(a)wanadoo.nl 2003-28-06 07:38 -------
Bug comments restored from Gmane.org:
It is easy of check, install winrar 2.90/3.00, click in the combo (you need a
version of day 31/10/2002 or superior ;), and change the letter, and the listbox
will not get updated. It works fine in comctl32 native. But the listbox will get
updated if you press ENTER in the combobox value.
I did some hacking in it:
in comboex.c:
* case CBN_SELCHANGE:
if i add this 2 lines: (before of the SendMessageW)
+ cbeend.iWhy = CBENF_RETURN;
+ COMBOEX_NotifyEndEdit (infoPtr, &cbeend, NULL);
return SendMessageW (parent, WM_COMMAND, wParam,
(LPARAM)infoPtr->hwndSelf);
Then it works Ok, but i am sure that it is a hack.
Regards,
Carlos.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1113
------- Additional Comments From z_god(a)wanadoo.nl 2003-28-06 07:37 -------
Bug comments restored from Gmane.org:
Hi everybody.
I was using build 20021007, that was not available to select for "version", on
Redhat 7.3. I tried to install the Interbase (an SQL database from Borland)
client and the installer reported that it could not copy any of the files
from the install subdirectory to the destination. Installation failed.
I managed to produce this debug output from wine:
08073ed8:Call kernel32.CopyFileW(402af0f8
L"C:\\ib_install\\client\\ibinstall.dll",402af150 L"C:\\Program
Files\\Borland\\InterBase\\",00000000) ret=4131ee2f
trace:file:CopyFileW L"C:\\ib_install\\client\\ibinstall.dll" -> L"C:\\Program
Files\\Borland\\InterBase\\"
trace:file:CreateFileW L"C:\\ib_install\\client\\ibinstall.dll" GENERIC_READ
FILE_SHARE_READ FILE_SHARE_WRITE OPEN_EXISTING attributes 0x0
trace:file:CreateFileW returning 00000054
trace:file:GetFileInformationByHandle 00000054
trace:file:CreateFileW L"C:\\Program Files\\Borland\\InterBase\\" GENERIC_WRITE
FILE_SHARE_READ FILE_SHARE_WRITE CREATE_ALWAYS attributes 0x20
warn:file:FILE_CreateFile Unable to create file '/usr/share/wine-c/Program
Files/Borland/InterBase' (GLE 82)
trace:file:CreateFileW returning ffffffff
warn:file:CopyFileW Unable to open dest L"C:\\Program
Files\\Borland\\InterBase\\"
08073ed8:Ret kernel32.CopyFileW() retval=00000000 ret=4131ee2f
What I can see here is that the destination is not a file name (as it is
supposed to be) but the name of a subdirectory. WINE does not like that.
The installer works flawlessly on any known windows platform, this
looks like an undocumented feature of windows to me.
------- Additional Comments From dclark <at> akamail.com 2002-10-31 13:39 -------
In this case it is a documented feature:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/bas…
Go down near the bottom to the header "Directories", and it says "An application
cannot create a directory with CreateFile; it must call CreateDirectory or
CreateDirectoryEx to create a directory."
And indeed, running on WinNT, if there is no such directory, this call sets the
LastError to ERROR_INVALID_NAME. I have seen another program that expects that
and then makes a call to create the directory.
------- Additional Comments From joern <at> sierwald.com 2002-10-31 13:50 -------
Sorry, but this is not what I meant. The destination directory does exist
already. The problem is that the destination ends with a '\' sign. Windows
would append the actual filename to the destination and try to open that file.
The resulting filename would be C:\\Program
Files\\Borland\\InterBase\\ibinstall.dll". But WINE doesn't do that.
------- Additional Comments From dclark <at> akamail.com 2002-10-31 14:19 -------
Quite right. I see that now.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1111
------- Additional Comments From z_god(a)wanadoo.nl 2003-28-06 07:35 -------
Bug comments restored from Gmane.org:
I'm trying to install the "Birds of the World" database (see
http://www.birdsoftheworld.org/) which is a FileMaker
Pro
application. It comes on two CDs. The installation is done
with InstallShield.
I get through the installation of the first CD without any
obvious problems (lots of messages on the console, but all
Windows-related windows seem fine). After a while, I get a
dialog the says "Please insert the disk: 2". I do this,
Nautilus mounts it for me, and I press OK. The dialog goes
away, and immediately comes back with the same text. Repeat
until boring.
For each iteration, I get the following in the console:
fixme:cdrom:CDROM_GetStatusCode Unmapped error code 2: No such file or
directory
fixme:cdrom:CDROM_GetStatusCode Unmapped error code 2: No such file or
directory
fixme:cdrom:CDROM_Open Can't open configured CD-ROM drive at M:\ (device
/dev/sr0): No such file or directory
fixme:cdrom:CDROM_GetStatusCode Unmapped error code 2: No such file or
directory
fixme:cdrom:CDROM_Open Can't open configured CD-ROM drive at M:\ (device
/dev/sr0): No such file or directory
fixme:cdrom:CDROM_GetStatusCode Unmapped error code 2: No such file or
directory
Since I happen to have two CD drives, I tried to cheat by creating a
"Drive D" CD for Wine to read from which is a directory on my HD with
symlinks to all files on both the CDs, but that didn't help either.
------- Additional Comments From johane <at> lysator.liu.se 2002-10-31 04:40 -------
I don't think severity means the impact on the application in question as much
as the impact on the component. Can anyone confirm those thoughts?
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-10-31
10:33 -------
A severity of blocker would be if wine would not compile or run
Did you look at this in the FAQ database
http://www.winehq.org/cgi-bin/fom?_highlightWords=cdrom&file=223
------- Additional Comments From unicorn <at> lysator.liu.se 2002-10-31 12:18 -------
I didn't look in the FAQ. However, as you can see, my original description
of the problem describes that I tried a very similar solution already (with
symlinks to all files on the two CDs instead of copying the files). Now I
have tried copying the files to a single directory as well, and I still get
the same problem with the installer looping over the question to insert CD
two.
------- Additional Comments From Speeddymon <at> yahoo.com 2002-11-01 12:55
-------
sounds to me like that installer may have some copy protection like all of
westwood's installers do, and since we dont have copy protection implemented
this installer wont work...
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1110
------- Additional Comments From z_god(a)wanadoo.nl 2003-28-06 07:34 -------
Bug comments restored from Gmane.org:
When using ModPlug Tracker (http://www.modplug.com) under wine
(and any window
manager), changing tabs does not redraw the various components on these tabs
(buttons, grids, etc.). In order to view them, I have to force a refresh of the
client window (usually by shading and unshading the window - I'm lazy :) ).
Needless to say, this makes any work done in this program fairly time-consuming.
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2002-10-30 11:09
-------
20010112 is *WAY* too old. Please try with a current release, and I'm sure it'll
be gone immediately ;)
------- Additional Comments From mike <at> theoretic.com 2003-03-27 05:00 -------
No response, closing.
------- Additional Comments From Speeddymon <at> yahoo.com 2003-16-06 18:56
-------
Assuming invalid and closing, previous details were deleted by Bugzilla update.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1192
------- Additional Comments From winebug(a)flonet.net 2003-28-06 07:33 -------
Bug comments restored from Gmane.org:
Wine 20020804 and younger builds correctly, but can't find symbols in dll's at
execution time, when built with pdksh as /bin/sh. When /bin/sh is bash this
condition does not occur.
Error message is:
err:win32:PE_fixup_imports No implementation for kernel32.dll.44(CloseHandle)
imported from C:\WINDOWS\SYSTEM\advapi32.dll, setting to 0xdeadbeef
It's repeating until ^C or killall wine, with number and function name changing.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1109
------- Additional Comments From z_god(a)wanadoo.nl 2003-28-06 07:33 -------
Bug comments restored from Gmane.org:
Some installers, when running in wine, install items with the correct case -
but for some reason wine doesn't keep the correct case, and makes it all
lowercase.
This has caused problems in some installers I have run.
One example is Family Tree Maker 9.0
- This installer creates a file called TextEditor.dll - but when it is
installed, it ends up being called texteditor.dll (note the lack of capitals)
- and Family Tree maker gets confused at that.
I realise that most people will not have this application - but i'm sure there
are other examples around.
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2002-10-30 11:07
-------
I guess this bug is invalid, since I suspect that the reporter isn't using
"win95" as the "Filesystem" mode setting (case-*insensitive* file handling)
in the config file.
Feel free to reopen it in case you *are* using "win95" FS mode and for some
reason it really doesn't properly handle filename case sensitivity.
------- Additional Comments From dpaun <at> rogers.com 2003-03-30 23:27 -------
Indeed -- closing.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1193
------- Additional Comments From winebug(a)flonet.net 2003-28-06 07:32 -------
Bug comments restored from Gmane.org:
Hi,
starting wine 20021125 (compiled with the only option --prefix=/usr or with
wineinstall) gives an endless loop:
groesle@stefan:~> wine /dos/d/windows/notepad.exe
Warning: the temporary directory '/dos/d/windows/temp' (specified in wine conf
Perhaps you have not properly edited or created your Wine configuration file.
This is (supposed to be) '/home/groesle/.wine/config'
fixme:win32:PE_CreateModule Security directory ignored
wine: Unhandled exception, starting debugger...
Warning: the temporary directory '/dos/d/windows/temp' (specified in wine conf
Perhaps you have not properly edited or created your Wine configuration file.
This is (supposed to be) '/home/groesle/.wine/config'
Warning: the temporary directory '/dos/d/windows/temp' (specified in wine conf
etc, etc
wine 20021031 started as expected.
today I tested the CVS version, compiled by christian eide. Notepad started but
crashed opening the file selector box.
Bye
G. Roesler
------- Additional Comments From dclark <at> akamail.com 2002-12-15 13:37 -------
The last crash mentioned, when opening the file dialog, should be fixed by:
http://www.winehq.com/hypermail/wine-cvs/2002/12/0175.html
With the, notepad works fine for me.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1194
------- Additional Comments From winebug(a)flonet.net 2003-28-06 07:31 -------
Bug comments restored from Gmane.org:
I put some test code on sourceforge.net (voix,win-snd) for recording and playing
wav file.
ply.exe work in win98, and in wine, but rec.exe don't.
I start with 'wine rec test.wav', and when put time for record, it exit.
In win98 recording is OK!
------- Additional Comments From branko.jermanis <at> hi.hinet.hr 2002-12-15
14:26 -------
Created an attachment (id=360)
--> (http://bugs.winehq.com/attachment.cgi?id=360&action=view)
Recording and playing for windows (new source)
------- Additional Comments From branko.jermanis <at> hi.hinet.hr 2002-12-18
13:07 -------
I try with KNOPPIX CD, and it recording with wine, but time control
don't stop.
Mandrake 8.2 can't record (on the same computer), only play.
I'm new in wine, and I can't understand...
Good work!
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.