http://bugs.winehq.org/show_bug.cgi?id=17044
Summary: Microsoft OneNote 2007 "Insert Audio Recording" doesn't
work
Product: Wine
Version: 1.1.13
Platform: Other
URL: http://office.microsoft.com/en-us/onenote
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Choosing "Insert / Audio Recording" (or video recording) causes the dialog
"At least Microsoft DirectX 8.1 and Microsoft Windows Media Player 8 are
required to record sound."
So I installed WMP10. The dialog is still there.
The remaining log messages included:
fixme:quartz:FilterGraphInner_QueryInterface unknown interface
{e19c7100-9709-4db7-9373-e7b518b47086}
fixme:quartz:FilterGraphInner_QueryInterface unknown interface
{fc4801a3-2ba9-11cf-a229-00aa003d7352}
That second uuid is IObjectWithSite, fwiw.
--
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=31051
Bug #: 31051
Summary: HttpQueryInfo() erroneously ignores lpdwIndex argument
for some info levels
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: support(a)tarma.com
Classification: Unclassified
The HttpQueryInfo() function should return data based on both the dwInfoLevel
and the *lpdwIndex arguments (if the latter is specified). In particular,
*lpdwIndex may be used by the caller to enumerate multiple headers with the
same name, like this idiom:
/* ...various irrelevant details and other error handling omitted...*/
DWORD dwIndex = 0;
while (HttpQueryInfo(hRequest, dwInfoLevel, pBuffer, dwBufSize, &dwIndex)) {
/* ...process the returned data... */
}
This enumerates potentially multiple like-named headers for the given
dwInfoLevel. It relies on HttpQueryInfo() to do the following (see Microsoft
Win32 API docs for HttpQueryInfo()):
(1) Check if the dwIndex-th header is available for dwInfoLevel; if not, return
FALSE and SetLastError(ERROR_HTTP_HEADER_NOT_FOUND).
(2) If the dwIndex-th header is available, then return its data (subject to
buffer space etc.) and increment *(&dwIndex).
For several of the possible dwInfoLevels, Wine's HttpQueryInfoW()
implementation has the following problems:
(P1) It does not check its *lpdwIndex value, but returns the same data and an
ERROR_SUCCESS result regardless of that value; and
(P2) It does not always increment *lpdwIndex if the current function call is
successful.
It keeps returning the same data regardless of the value of *lpdwIndex, and
keeps returning TRUE. This leads to infinite loops in the caller when used with
(variations of) the above enumeration idiom.
In particular, this erroneous behavior occurs with the following dwInfoLevels
(see implementation of HTTP_HttpQueryInfoW() in dlls\wininet\http.c):
HTTP_QUERY_RAW_HEADERS_CRLF:
EXPECTED: Should return data and increment *lpdwIndex for *lpdwIndex==0 only,
and return ERROR_HTTP_HEADER_NOT_FOUND for all other values of *lpdwIndex.
ACTUAL: Instead, always returns ERROR_SUCCESS except if the destination buffer
is too small. It also does not increment *lpdwIndex if it returns
ERROR_SUCCESS.
HTTP_QUERY_RAW_HEADERS: (ditto)
HTTP_QUERY_STATUS_TEXT: (ditto)
HTTP_QUERY_VERSION: (ditto)
--
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=32637
Bug #: 32637
Summary: Some VST plugins that used to work with dssi-vst now
fail
Product: Wine
Version: 1.5.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.tarenskeen(a)zonnet.nl
Classification: Unclassified
Created attachment 43067
--> http://bugs.winehq.org/attachment.cgi?id=43067
running VSTi plugin TAL-U-NO-LX-V2.dll using dssi-vst on Fedora 17: error
backtrace
I use dssi-vst to run VST synth/effect/audio plugins.
For example TAL-U-NO-LX-V2 from Togu Audio Line used to run and sound
prefectly.
But now it fails. I am attaching a backtrace file.
--
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=31640
Bug #: 31640
Summary: hugin's enfuse.exe crashes without native vcomp100.dll
(purist)
Product: Wine
Version: 1.5.12
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vcomp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Andre Hentschel suggested this test case.
Download and run the installer from
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2/HuginSetup_2…
Then:
cd ~/".wine/drive_c/Program Files/Hugin/bin"
rm vcomp100.dll
wget http://www.realworldimagery.com/Samples/peopl911.tif
mv peopl911.tif a.tif
wget http://www.realworldimagery.com/Samples/VEHIC200.tif
mv VEHIC200.tif b.tif
wine enfuse.exe --output=c.tif a.tif b.tif
Result:
unimplemented function vcomp100.dll._vcomp_fork
FWIW, winedump -j import says it needs the following symbols from vcomp100:
omp_get_dynamic
omp_get_max_threads
omp_get_nested
omp_get_num_procs
omp_get_num_threads
omp_get_thread_num
omp_set_dynamic
omp_set_nested
_vcomp_fork
_vcomp_for_static_end
_vcomp_for_static_simple_init
Let's make this bug about the 32 bit version of enfuse.exe.
Once that's working, let's do another bug for the 64 bit version
and/or similar bugs for enblend.exe.
--
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=28916
Bug #: 28916
Summary: Spellforce 2 Gold - wrong drawing order of surfaces
(regression)
Product: Wine
Version: 1.3.20
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kirillkh(a)gmail.com
Classification: Unclassified
As far as I can tell, the issue is with various surfaces having wrong z-index,
i.e. when an object is supposed to be obscured by a surface, the object is
still drawn over the surface. This results in objects visually "floating" above
the surface and generally makes various maps messy.
The issue is present since 1.3.20 or 1.3.19 (and still not fixed in 1.3.31).
Verified to work correctly in 1.3.18. One has to install winetricks
d3dx9_36/d3dx9/directx9 in order to play the game at all. The issue has been
verified to occur with any and all of them installed, and with a lot of
combinations of graphical settings in game.
I don't have a log ATM, but can provide one if needed.
--
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=33076
Bug #: 33076
Summary: QQ 2012 hangs after login
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jactry92(a)gmail.com
Classification: Unclassified
Created attachment 43728
--> http://bugs.winehq.org/attachment.cgi?id=43728
The Log
reproduce
1. compile a wine with "CFLAGS="-O0" to word around Bug 27468
2. download it from: http://dl_dir.qq.com/qqfile/qq/QQ2012/QQ2012.exe
3. 'winetricks -q vcrun2005 riched20'
4. 'wine QQ2012.exe' to install then cd to the path where you installed it
5. ~/.wine/drive_c/Program Files/Tencent/QQ/Bin$ Wine QQ.exe
6. login and it will hangs (you can regist a account in http://reg.imqq.com/)
--
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=24128
Summary: Everquest 2 trial installer: missing text without ie6
Product: Wine
Version: 1.3.1
Platform: x86
URL: http://launch.soe.com/installer/EQ2X_setup.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: trivial
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=30368)
--> (http://bugs.winehq.org/attachment.cgi?id=30368)
screenshot
Not sure which component of ie6 it is, though.
No terminal output when it happens. Screenshot 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.
http://bugs.winehq.org/show_bug.cgi?id=26083
Summary: Window can be resized larger than what it should be
possible
Product: Wine
Version: 1.3.13
Platform: x86-64
URL: http://www.ghisler.com/amazons3.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
Created an attachment (id=33265)
--> (http://bugs.winehq.org/attachment.cgi?id=33265)
Total Commander: Find Files window resized larger vertically
Total Commander -> Commands -> Search -> resize the "Find Files" window larger
vertically, notice it shows garbage (see the screenshot).
--
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=15219
Summary: Microsoft Office 2007: Infopath outputs an error when
attempting to fill out a form
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=15974)
--> (http://bugs.winehq.org/attachment.cgi?id=15974)
output in git
Not sure what this program does, but it doesn't work :-P.
Start infopath:
$ wine INFOPATH.EXE
You're given a bunch of sample forms to fill out.
Choose any one, double click:
'Infopath encountered an error. The operation failed.'
Output 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.