https://bugs.winehq.org/show_bug.cgi?id=36094
Bug ID: 36094
Summary: advapi32/security test uses an unitialized variable in
test_CreateDirectoryA
Product: Wine
Version: 1.3.13
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: minor
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==7325== Syscall param writev(vector[...]) points to uninitialised byte(s)
==7325== at 0x4E9528CC: writev (in /usr/lib/libc-2.18.so)
==7325== by 0x7BC7FDBF: send_request (server.c:213)
==7325== by 0x7BC7FF51: wine_server_call (server.c:294)
==7325== by 0x7BC44D67: FILE_CreateFile (file.c:185)
==7325== by 0x7BC44FB8: NtCreateFile (file.c:279)
==7325== by 0x7B860841: CreateDirectoryW (path.c:1531)
==7325== by 0x7B8608F0: CreateDirectoryA (path.c:1555)
==7325== by 0x497D484: test_CreateDirectoryA (security.c:3085)
==7325== by 0x498A469: func_security (security.c:5423)
==7325== by 0x4999ED4: run_test (test.h:584)
==7325== by 0x499A2C3: main (test.h:654)
==7325== Address 0x472dcf8 is 88 bytes inside a block of size 120 alloc'd
==7325== at 0x7BC4C735: notify_alloc (heap.c:255)
==7325== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==7325== by 0x7BC884F6: NTDLL_create_struct_sd (sync.c:118)
==7325== by 0x7BC44C62: FILE_CreateFile (file.c:167)
==7325== by 0x7BC44FB8: NtCreateFile (file.c:279)
==7325== by 0x7B860841: CreateDirectoryW (path.c:1531)
==7325== by 0x7B8608F0: CreateDirectoryA (path.c:1555)
==7325== by 0x497D484: test_CreateDirectoryA (security.c:3085)
==7325== by 0x498A469: func_security (security.c:5423)
==7325== by 0x4999ED4: run_test (test.h:584)
==7325== by 0x499A2C3: main (test.h:654)
==7325== Uninitialised value was created by a client request
==7325== at 0x7BC4C52C: mark_block_uninitialized (heap.c:209)
==7325== by 0x7BC4C697: initialize_block (heap.c:240)
==7325== by 0x7BC50FA3: RtlAllocateHeap (heap.c:1717)
==7325== by 0x497D2A5: test_CreateDirectoryA (security.c:3067)
==7325== by 0x498A469: func_security (security.c:5423)
==7325== by 0x4999ED4: run_test (test.h:584)
==7325== by 0x499A2C3: main (test.h:654)
==7325==
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40266
Bug ID: 40266
Summary: Latest steam.exe not running after update
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: agasoni(a)yahoo.gr
Distribution: ---
Created attachment 53888
--> https://bugs.winehq.org/attachment.cgi?id=53888
The backtrace as reported by wine itself to gether with the stderr print out
I am running the distributed version of wine from linux mint
3.16.0-38-generic #52~14.04.1-Ubuntu x86_64 x86_64 x86_64 GNU/Linux
I opened the latest windows installer from Steam website
and when opening it updated successfully and then crashed.
It has left some windows with buttons open but without any text on the buttons
or anywhere in the app window.
The crash repeats every time I open the application.
If needed I can provide more accurate symptoms because I have a development
background but not worked on wine so will need some instructions for it.
--
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=34290
Bug #: 34290
Summary: QQ International can't 'Clear All' if there is a GIF
Product: Wine
Version: 1.7.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
Created attachment 45648
--> http://bugs.winehq.org/attachment.cgi?id=45648
where_is_ClearAll.png
0. Download http://dl_dir.qq.com/qqfile/qq/QQ2012/QQIntl1.6.exe
$ sha1sum QQIntl1.6.exe
7a9f585b4d54c3b69fb1049570d9fc59ba25477a QQIntl1.6.exe
1.
winetricks riched20, workaround Bug 29636
winetricks ie8, workaround Bug 29638
winetricks cjkfonts
2. Open a chat-box(with someone or in a group)
3. Click the triangle near 'Message History', then click 'Clear All'
4. Usually, it works well. But if someone had sent a GIF picture, and 'Clear
All' won't work.
--
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=31677
Bug #: 31677
Summary: a child window not opened properly
Product: Wine
Version: 1.5.12
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tramp(a)sibmail.com
Classification: Unclassified
This code is not working properly:
void PreSubclassWindow()
{
LONG Styles = GetWindowLong(m_hWnd, GWL_STYLE);
LONG ExStyles = GetWindowLong(m_hWnd, GWL_EXSTYLE);
if (Styles == 0 || ExStyles == 0)
return;
Styles |= WS_CHILD;
Styles &= ~WS_OVERLAPPED;
Styles &= ~WS_CAPTION;
Styles &= ~WS_BORDER;
ExStyles &= ~WS_EX_CLIENTEDGE;
ExStyles &= ~WS_EX_DLGMODALFRAME;
ExStyles &= ~WS_EX_WINDOWEDGE;
SetWindowLong(m_hWnd, GWL_STYLE, Styles);
SetWindowLong(m_hWnd, GWL_EXSTYLE, ExStyles);
}
--
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=35513
Bug ID: 35513
Summary: Adobe CC installer stalls (after Bug 35512)
Product: Wine
Version: 1.7.11
Hardware: x86-64
URL: https://creative.adobe.com/products/photoshop
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: ole
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Classification: Unclassified
Created attachment 47407
--> http://bugs.winehq.org/attachment.cgi?id=47407
wine-1.7.11-206-g82b3813 console output
Working around Bug 35510 and Bug 35512 with native winhttp, wintrust and msasn
the Adobe CC installer complains that it cannot connect to the Internet.
fixme:ole:NdrCorrelationInitialize (0x98d378, 0x98cf78, 1024, 0x0): stub
fixme:ole:NdrCorrelationInitialize (0x105dfe8, 0x105dbe8, 1024, 0x0): stub
Surprisingly, rpcrt4.dll from Windows XP allows the installer to get further:
fixme:ntdll:NtConnectPort (0x1628b8,L"\\RPC
Control\\keysvc",0x98d058,(nil),(nil),(nil),0x98d080,0x98d068),stub!
Which may be Bug 30069.
--
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=32502
Bug #: 32502
Summary: YoudaoNote: crashes when syncing
Product: Wine
Version: 1.5.19
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 42878
--> http://bugs.winehq.org/attachment.cgi?id=42878
The Log
You can reproduce it follow this:
0. download and install it:
md5sum Downloads/YNote.exe
8c790463479ee83fa56a8a896aafe9e9 Downloads/YNote.exe
BTW, I select no when it asked me to install Youdao Dict.
1. run it '~/.wine/drive_c/Program Files/Youdao/YoudaoNote$ wine
YoudaoNote.exe'
2. login
If you are the frist time run it, it will sync automatically and crash. If not
you can reproduce it by create a new note and click the "同步" button to sync and
it will crash.
And I found 'winetrick -q ie7' helps a lot.
My test environment:
- Ubuntu 12.10 32bit
- wine-1.5.19-272-gf30c18f
--- snip ---
wine: Unhandled page fault on write access to 0x00000000 at address 0x61e474f3
(thread 0031), starting debugger...
fixme:wincodecs:PngDecoder_Block_GetCount 0x10a220e0,0x33eba8: stub
Unhandled exception: page fault on write access to 0x00000000 in 32-bit code
(0x61e474f3).
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
EIP:61e474f3 ESP:05daba80 EBP:6adf2304 EFLAGS:00010246( R- -- I Z- -P- )
EAX:0000000a EBX:00000003 ECX:05daba40 EDX:00000000
ESI:6adf1640 EDI:00000000
Stack dump:
0x05daba80: 0000000a 7c6b81e0 05dabab8 7c64d1c1
0x05daba90: 7c6b81e0 0006010e 05dabae8 69dc2aa0
0x05dabaa0: 05dabad4 6adf1686 05dabac8 00000003
0x05dabab0: 6adf1640 00000000 6adf2304 69c64be3
0x05dabac0: 7c6b81e0 6adf1686 05dabad4 0000048e
0x05dabad0: 7eb4c869 21232323 41202121 54524f42
Backtrace:
=>0 0x61e474f3 in mozalloc (+0x74f3) (0x6adf2304)
0x61e474f3: movl $0x7b,0x00000000
--- 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=10206
Summary: Crysis has huge graphical errors on certain systems
Product: Wine
Version: 0.9.48.
Platform: PC
URL: http://www.fileplanet.com/168866/160000/fileinfo/Crysis-
Demo-(Singleplayer)
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: l_bratch(a)yahoo.co.uk
Created an attachment (id=8816)
--> (http://bugs.winehq.org/attachment.cgi?id=8816)
Screenshot from the start of the game
Crysis fails to render properly at all for me (see attachment), whereas on
other systems, such as this user's (screenshot from the same section):
http://appdb.winehq.org/appimage.php?iId=14046
It looks fairly good.
The only difference is that that user is running a Geforce 8600 GT and I am
running a 7900 GTX. Same Wine version and settings, and same driver version.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27985
Summary: Starcraft 2 Editor: The data editor listviews which
show the attribute names have each a horizontal
scrollbar
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: florian(a)fkoeberle.de
Created an attachment (id=35820)
--> (http://bugs.winehq.org/attachment.cgi?id=35820)
Unreadable tokenfield because of the horizontal scrollbar. (Wine 1.3.25)
The data editor listviews which show the attribute names have each a horizontal
scrollbar, which can be used to scroll by about 1-3 pixel. On windows, or with
native comctl32 there is no horizontal scrollbar.
On windows it looks like this:
http://www.staredit.net/starcraft2/File:Actor_-_Right_Panel.jpg
(Ignore the red markers)
Workaround: Resize the single column in the listview with the horizontal
scrollbar.
--
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=26363
Summary: SmartTRAK: graphic artifacts on part of dive computer
screen
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: karent.bug(a)gmail.com
Created an attachment (id=33584)
--> (http://bugs.winehq.org/attachment.cgi?id=33584)
Screenshot
1) Download and install SmartTRAK from scubapro.com
Direct link:
http://www.scubapro.com/europe/uk/uwatec-products/software/software/smarttr…
2) Use winetricks to install MS Jet 4.0 Service Pack 8 and MS MDAC 2.8
3) run SmartTrak and open demonstration logbook file Demo.slg. This logbook
should be already open when SmartTRAK starts for the first time, if not, choose
Logbook->Open
4) You will see Dive Table window and Dive window. On the right side of Dive
window there is an LCD dive coputer display shown.
Recorded dives contain data from different dive computer types. Choose any dive
that as performed with Aladin 2G dive computer - these are dives numbered 15,
16, 17, 18
5) Click anywhere inside the graph (depth vs time), hold LMB and scroll thruogh
the graph, data shown on LCD display should change acordingly.
6) Note that whenever depth is shown on LCD (as opposed "---" that is being
shown for surface part of dive) there is a graphic artifact that covers part of
the LCD display.
This problem does not occure for other recorded dives (different types of dive
computers)
--
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.