http://bugs.winehq.org/show_bug.cgi?id=18759
Summary: RoughDraft 3's Word Count feature always says zero
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://www.salsbury.f2s.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user reported in http://jainakay.livejournal.com/41083.html
that Rough Draft's word count feature fails, always reporting
that the document has zero words.
Sure enough, I tried Rough Draft 3, and he's right.
--
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=26768
Summary: oleaut32 warnings on x86-64
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
../../../dlls/oleaut32/tmarshal.c:426:3: warning: #warning You need to
implement stubless proxies for your architecture
../../../dlls/oleaut32/tmarshal.c: In function ‘serialize_param’:
../../../dlls/oleaut32/tmarshal.c:717:279: warning: cast to pointer from
integer of different size
../../../dlls/oleaut32/tmarshal.c:793:73: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:794:56: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:800:50: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:802:7: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:802:41: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:807:51: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:809:7: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:809:41: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:895:92: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c: In function ‘deserialize_param’:
../../../dlls/oleaut32/tmarshal.c:1076:12: warning: cast from pointer to
integer of different size
../../../dlls/oleaut32/tmarshal.c:1079:78: warning: cast to pointer from
integer of different size
../../../dlls/oleaut32/tmarshal.c:1086:15: warning: cast from pointer to
integer of different size
../../../dlls/oleaut32/tmarshal.c:1181:11: warning: cast from pointer to
integer of different size
../../../dlls/oleaut32/tmarshal.c:1189:16: warning: cast to pointer from
integer of different size
../../../dlls/oleaut32/tmarshal.c: In function ‘init_proxy_entry_point’:
../../../dlls/oleaut32/tmarshal.c:1699:17: warning: unused variable ‘xasm’
../../../dlls/oleaut32/tmarshal.c: At top level:
../../../dlls/oleaut32/tmarshal.c:1317:1: warning: ‘xCall’ defined but not used
--
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=30522
Bug #: 30522
Summary: Jupiter shows too small, unreadable fonts
Product: Wine
Version: 1.5.2
Platform: x86
URL: http://pity.elfin.pl/pliki/Jupiter/Jupiter2011/std/1.0
.5.6/Jupiter2011_std_1.0.5.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: washuu(a)eastnews.com.pl
Classification: Unclassified
Created attachment 39929
--> http://bugs.winehq.org/attachment.cgi?id=39929
sample data file with bogus numbers
Jupiter is free, downloadable program for calculating taxes in Poland, it's
quite pupular.
I found using it under Wine quite unconfortable, because of a few bugs. Here is
one of them:
- install the application. In my case it went without any glitches.
- run the application.
- open the sample data file, using menu "Plik" ("file") and "Otworz" ("open").
- wait a few seconds to open data file, when it is loaded you see some text in
the middle, starting with "dziekujemy za skorzystanie z programu".
- click tab "Formularze" ("forms") and see very tiny, unreadable letters on
the form. On win32, the forms are readable and nicely formatted. I can create
some screenshots, but nevertheless the fonts in Wine are very small.
My wine is 1.5.2, running on Ubuntu 11.10 32bit.
--
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=14078
Summary: Rewrite typelib marshaller on top of NDR functions
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
[Copied from wine-devel.]
Dan K. wrote in
http://www.winehq.org/pipermail/wine-devel/2008-June/066540.html
--- snip ---
While looking at the valgrind warning in
http://kegel.com/wine/valgrind/logs-2008-06-20/vg-oleaut32_tmarshal.txt
Conditional jump or move depends on uninitialised value(s)
at serialize_param (tmarshal.c:736)
by serialize_param (tmarshal.c:744)
by xCall (tmarshal.c:1414)
by ???
by func_tmarshal (tmarshal.c:1179)
by run_test (test.h:449)
by main (test.h:498)
Uninitialised value was created by a stack allocation
at test_typelibmarshal (tmarshal.c:762)
The problem happens during a call to this method
where widget is a pointer to an uninitialized pointer
which will receive the pointer to the widget:
interface IKindaEnumWidget : IUnknown
{
HRESULT Next(
[out] IWidget **widget);
I discovered that the attached patch prevented the problem.
I don't quite understand why; at first glance,
widget is an out parameter from the function,
why would it be dereferenced while serializing
the call?
--- snip ---
Rob Shearman wrote:
http://www.winehq.org/pipermail/wine-devel/2008-June/066571.html
--- snip ---
It's a bug in the typelib marshaller. It doesn't check whether a
VT_PTR type is actually an interface pointer and not access it on
input when the parameter is an [out] parameter. Note that because of
the memory re-use semantics it is legal to access memory passed in to
a remote function, even when the parameter is [out].
I think it's getting close to the time to reimplement the typelib
marshaller on top of NDR functions so that we don't have to implement
these subtleties twice, would improve performance and would reduce the
amount of code.
--- snip ---
--
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=34967
Bug #: 34967
Summary: Microsoft .NET 2.0 (sp1) Framework (x64): hangs after
install
Product: Wine
Version: 1.7.6
Platform: x86-64
URL: http://www.microsoft.com/en-us/download/details.aspx?i
d=6041
OS/Version: Linux
Status: NEW
Keywords: dotnet, download, Installer, win64
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Created attachment 46595
--> http://bugs.winehq.org/attachment.cgi?id=46595
backtrace
Similar to bug 30162, but this time it's dotnet20sp1 (64-bit)
To reproduce:
rm -rf .wine
WINEARCH=win64 wineboot
wine64 uninstaller # remove mono
wget
http://download.microsoft.com/download/a/3/f/a3f1bf98-18f3-4036-9b68-8e6de5…
wine64 NetFx64.exe
install .Net 2.0 (I saw it hang here in previous runs, but not lately. Not sure
if it's a race, or I did something wrong).
then sp1:
wget
http://download.microsoft.com/download/9/8/6/98610406-c2b7-45a4-bdc3-9db1b1…
wine64 NetFx20SP1_x64.exe
it should install fine, but will hang on completion:
[austin@localhost winetricks]$ ps u | grep \\.exe
austin 10465 0.1 0.9 2657616 9496 pts/2 Sl+ 19:20 0:00
Y:\dotnet20sp1\NetFx20SP1_x64.exe
austin 10474 1.5 3.7 2680516 38232 pts/2 S+ 19:20 0:05
c:\d9fc34cf222bec46bf31\setup.exe
austin 11599 0.0 0.0 112640 952 pts/1 S+ 19:26 0:00 grep
--color=auto \.exe
Eventually, you'll get a debugger notice, mentioning mscorsvw. The terminal
output is brief:
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
err:ole:CoRevokeClassObject called from wrong apartment, should be called from
16f00000170
# hangs here
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"continue"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"continue"
fixme:advapi:InitiateSystemShutdownExW (null) L"" 0 0 1 -2147483648
I'll attach the backtrace I got (though it looks like it's a 32-bit process?).
--
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=19016
Summary: Unhandled type TKIND_COCLASS in oleaut
serialze_param() and deserialize_param()
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joshudson(a)gmail.com
fixme:ole:serialize_param unhandled switch cases tattr->typekind 5
This causes Word Automation from .NET to not work.
Tell me how to get what logs you want and I'll be happy to provide them.
--
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=35663
Bug ID: 35663
Summary: SWAT 3: Screen Flickering
Product: Wine
Version: 1.7.12
Hardware: Other
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ipickert55(a)gmail.com
SWAT 3 has intense screen flickering ingame, menus work just fine it is only
ingame. I have no registry settings that have been set, the only thing is a
-nointro flag to make sure the game doesnt crash at startup.
--
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=30801
Bug #: 30801
Summary: need for speed underground 2 [full version] unusable
because of incorrect graphics render
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kaktus9(a)gmail.com
Classification: Unclassified
Created attachment 40339
--> http://bugs.winehq.org/attachment.cgi?id=40339
screen shown after pressing enter after intro movie and my system specs by
hardinfo program in a zip
after installing need for speed underground 2 into wine [game installs ok] on
startup either invalid parameters passed wine error window appears, or after
multiple tries game starts, but after intro movie splash screen shown is
lacking any form of text/fonts. after pressing enter to get into main menu of
need for speed underground 2 either black screen is shown, or after another
enter press game goes to state shown by screenshot attached below, only1 car
image no ui whatsoever that makes game unusable
tested both under wine default for ubuntu 12.04 -1.4 and wine 1.5.5 in both
versions bug occurs
i'm using a HP 6735b laptop with raden 3200 HD on board, when tested on exact
same machine with windows 7 game runs perfectly on max settings so it is not
cause of too weak hardware
this was tested under FULL version v.1.0
demo may be found here http://www.gamefront.com/files/3673931
i use drivers as follows stated bny hardinfo program
-Version-
Kernel : Linux 3.2.0-24-generic-pae (i686)
Distribution : Ubuntu 12.04 LTS
my computer full specification can be found at
http://h10010.www1.hp.com/wwpc/us/en/sm/WF06b/321957-321957-64295-321838-39…
below i attach in zip archive screenshot and hardinfo program html report on my
system
--
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=35675
Bug ID: 35675
Summary: Bad textures in World of Tanks
Product: Wine
Version: 1.7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mzettik(a)gmail.com
Created attachment 47636
--> http://bugs.winehq.org/attachment.cgi?id=47636
Screenshots of bad textures on tanks
I'm running World of Tanks with latest wine 1.7.13.
WoT after update to 8.11 sometimes bad show textures on tanks (in garage and in
game too). In 8.10 no problems. I wrote to WoT bugs, but they not officialy
support linux and I cannot send info from dxdiag - not works.
I test completly reinstall WoT (via Play on Linux) and still bad textures
Screenshots in attachements...
--
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=25066
Summary: NFS Porsche: gimme.dll prevents the game from starting
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=31786)
--> (http://bugs.winehq.org/attachment.cgi?id=31786)
Terminal output on wine-1.3.6-240-g791b22a
Steps to reproduce:
1) remove ~/.wine
2) install NFS Porsche Unleashed
3) patch the game with NFS5-3.5.20040310.ZIP
4) wine Porsche.exe driver=dx7z
Behaviour:
The game crashes after splash screen.
Expected behaviour:
The game shouldn't crash.
Workaround:
rename gimme.dll to gimme.dll.bak
--
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.