http://bugs.winehq.org/show_bug.cgi?id=31283
Bug #: 31283
Summary: I Love Science! cannot detect it's CD
Product: Wine
Version: 1.5.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Nachanon_Vetjasit(a)hotmail.com
Classification: Unclassified
Created attachment 41094
--> http://bugs.winehq.org/attachment.cgi?id=41094
WINE 1.5.6 +relay,+seh,+tid
When started DK's I Love Science (.wine/drive_c/Program Files/DK Multimedia/I
Love Science!/ilovesci.exe), instead of launch screen popping up,
an error message was displayed:
"Please put the I Love Science! CD in a CD drive"
[Retry][Quit]
Clicking "Retry" will make the dialog disappear, then it appeared back almost
instantly. Clicking "Quit" will simply close the program.
I Love Science's CD was mounted at drive D:
Tested with WINE's Windows version 98.
I Love Science! is a Win16 application and supports Windows 3.x.
WINE: wine-1.5.6 source distribution.
System: Debian GNU/Linux 5.0 "Lenny" i386 (Intel Pentium 4 2.66GHz)
--
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=31418
Bug #: 31418
Summary: IE HTTPS Fails
Product: Wine
Version: 1.5.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fredrick.ward(a)gmail.com
Classification: Unclassified
Attempted install of IE8 under ubuntu 12.04. Pages open, but secure pages will.
Attempted to use wininet and winhttp respectively and neither resolved the
issue. install of crypt32 gets rid of error but then page cannot load
--
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.
https://bugs.winehq.org/show_bug.cgi?id=37130
Bug ID: 37130
Summary: Clang Static Analyzer: Memory Leak
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukebenes(a)hotmail.com
Clang Static Analyzer identifies a potential memory leak
File: libs/wpp/ppl.yy.c
Location: line 4475, column 1
Description: Potential memory leak
static void macro_add_arg(int last)
{
..
if(last || mep->args[mep->nargs-1][0])
{
yy_push_state(pp_macexp);
push_buffer(NULL, NULL, NULL, last ? 2 : 1);
ppy__scan_string(mep->args[mep->nargs-1]);
//Clang: Calling 'ppy__scan_string'
//Clang: Returned allocated memory
}
//Clang: Potential memory leak
}
The pyy__scan_string function has a non-used return value. Calling this
function will anyway make the malloc() function return the value, and after it
is called, memory must be freed.
Let's see how the call of the pyy__scan_string function leads to calling
malloc.
YY_BUFFER_STATE ppy__scan_string (yyconst char * yystr )
{
return ppy__scan_bytes(yystr,strlen(yystr) );
}
YY_BUFFER_STATE ppy__scan_bytes (yyconst char * yybytes,
yy_size_t _yybytes_len )
{
YY_BUFFER_STATE b;
char *buf;
...
buf = (char *) ppy_alloc(n );
...
b = ppy__scan_buffer(buf,n );
...
return b;
}
YY_BUFFER_STATE ppy__scan_buffer (char * base, yy_size_t size )
{
YY_BUFFER_STATE b;
...
b=(YY_BUFFER_STATE) ppy_alloc(sizeof(struct yy_buffer_state));
...
return b;
}
void *ppy_alloc (yy_size_t size )
{
return (void *) malloc( size );
}
--
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=36853
Bug ID: 36853
Summary: WINE should detect the presence of the window manager.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: carlo.bramix(a)libero.it
Created attachment 48943
--> http://bugs.winehq.org/attachment.cgi?id=48943
Screenshot, missing decorations.
In my private, ubuntu based, linux distribution, I installed the strict minimun
amount of packages, required for running just WINE and applications for Windows
with few megabytes.
I have not installed a window manager.
When running applications, it will happen that the decorations of the windows
won't be displayed if the window manager is enabled to draw or control them.
See the attached screenshot with winecfg running as an example.
The presence of the window manager should be detected and, if it is not
available, the two options for such purpose should be always grayed and the
function must be disabled automatically if it's enabled.
--
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=37131
Bug ID: 37131
Summary: Clang Static Analyzer: Division by zero
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukebenes(a)hotmail.com
Clang Static Analyzer identifies Division by zero
File: dlls/winex11.drv/palette.c
Location: line 601, column 43
Description: Division by zero
#define NB_RESERVED_COLORS 20
...
static void X11DRV_PALETTE_FillDefaultColors(....)
{
...
int i = 0, idx = 0;
int red, no_r, inc_r;
...
if (palette_size <= NB_RESERVED_COLORS)
return;
while (i*i*i < (palette_size - NB_RESERVED_COLORS)) i++;
no_r = no_g = no_b = --i;
...
inc_r = (255 - NB_COLORCUBE_START_INDEX)/no_r;
//Clang: Division by zero
...
}
The code will continue executing if the palette_size variable is larger than or
equal to 21. With the value 21, the 'i' variable will be first incremented by
one and then decremented by one. As a result, the 'i' variable will remain
equal to zero, which will cause the division-by-zero error.
--
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=35699
Bug ID: 35699
Summary: the location to start drawing is failed in list
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: matyapiro31(a)gmail.com
The list described in the attached file is rendered incorrectly.
(Maybe gdi mistaken point to start)
You cannot cause this without changing wine theme to
Light(http://aerilius.deviantart.com/art/Ubuntu-Light-Themes-12-10-32763197….
Thus,if you set it as no theme,it does not matter.
--
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=35696
Bug ID: 35696
Summary: [Japanese Font]Wine default fonts replacements for MS
fonts are not beautiful.
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: fonts
Assignee: wine-bugs(a)winehq.org
Reporter: matyapiro31(a)gmail.com
This is not enough to be called a bug.
However,many or almost all Japanese wine user complain that the Ume fonts are
not beautiful and download the MS Mincho font.
I think this is because wine does not use system font.
(such as Takao Mincho in Ubnutu,Hiragino in OSX).
--
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=14055
Summary: Occasional wine crash during Heroes of Might and Magic
III gameplay
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: riklaunim(a)gmail.com
Created an attachment (id=14275)
--> (http://bugs.winehq.org/attachment.cgi?id=14275)
Crash log
During gameplay the game may sometimes crash. It looks like the bug is related
to mp3/sound – “mp3dec.asi” (using OOS in wine). The log shows the
backtrace.
--
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=33975
Bug #: 33975
Summary: The Last Remnant stutters and stops rendering during
battles
Product: Wine
Version: 1.6-rc4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael.blumenkrantz(a)gmail.com
Classification: Unclassified
During battle sequences, there is a graphical effect which causes a fullscreen
blur for the player to activate a quick-time event and press a button. During
these effects, the game's video freezes for some time before resuming; the
audio continues playing as normal for the duration.
It's likely that this occurs both in the demo and the full game.
I am willing and able to provide any debug output on demand.
--
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.