https://bugs.winehq.org/show_bug.cgi?id=44610
Bug ID: 44610
Summary: Memory leak in [po.c:1463]
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: fan.gang.cn(a)gmail.com
Distribution: ---
Created attachment 60598
--> https://bugs.winehq.org/attachment.cgi?id=60598
The sourcebrella-pinpoint screenshot of a memory leak defect.
We find a memory leak defect in the file tools/wrc/po.c.
I've uploaded a screenshot of the leak trace.
If found is false on line 1455, the memory pointed by new is leaked without
being freed.
Gang
Sourcebrella
--
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=44608
Bug ID: 44608
Summary: Memory leak in [utils.c]
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: fan.gang.cn(a)gmail.com
Distribution: ---
Created attachment 60596
--> https://bugs.winehq.org/attachment.cgi?id=60596
The sourcebrella-pinpoint screenshot of a memory leak defect.
We find a memory leak defect in the file tools/winebuild/utils.c.
I've uploaded a screenshot of the leak trace.
make_c_identifier allocates a new buffer but strmake() won't free it.
Gang
Sourcebrella
--
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=44607
Bug ID: 44607
Summary: Memory leak in [parser.c:519]
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: fan.gang.cn(a)gmail.com
Distribution: ---
Created attachment 60595
--> https://bugs.winehq.org/attachment.cgi?id=60595
The sourcebrella-pinpoint screenshot of a memory leak defect.
We find a memory leak defect in the file tools/winebuild/parser.c.
I've uploaded a screenshot of the leak trace.
It looks like a developer frees this memory on line 486 but forget to do the
same thing on line 479 when an error occurs.
Gang
Sourcebrella
--
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=44606
Bug ID: 44606
Summary: Memory leak in [import.c:367]
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: fan.gang.cn(a)gmail.com
Distribution: ---
Created attachment 60594
--> https://bugs.winehq.org/attachment.cgi?id=60594
The sourcebrella-pinpoint screenshot of a memory leak defect.
We find a memory leak defect in the file tools/winebuild/import.c.
I've uploaded a screenshot of the leak trace.
The memory stored to dll_name is not freed anywhere in this function
(add_static_import_dll has not freed this memory, it allocated its own string
buffer instead. ).
Gang
Sourcebrella
--
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=44605
Bug ID: 44605
Summary: Memory leak in [main.c:688]
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: fan.gang.cn(a)gmail.com
Distribution: ---
Created attachment 60593
--> https://bugs.winehq.org/attachment.cgi?id=60593
The sourcebrella-pinpoint screenshot of a memory leak defect.
We find a memory leak defect in the file tools/winebuild/main.c.
I've uploaded a screenshot of the leak trace.
Even though this leak happens in the main function, which means this cannot be
count as an actual leak. It is still recommended to free the resource for
better coding practice and for future wine newbies.
Gang
Sourcebrella
--
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=44604
Bug ID: 44604
Summary: Memory leak in [res32.c:316][import.c:332]
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: fan.gang.cn(a)gmail.com
Distribution: ---
Created attachment 60592
--> https://bugs.winehq.org/attachment.cgi?id=60592
The sourcebrella-pinpoint screenshot of a memory leak defect.
We find a memory leak defect in the file tools/winebuild/import.c.
I've uploaded a screenshot of the leak trace.
The memory allocated by get_dll_name should be freed somewhere in this
function.
Gang
Sourcebrella
--
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=44603
Bug ID: 44603
Summary: Memory leak in [import.c:290]
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: fan.gang.cn(a)gmail.com
Distribution: ---
Created attachment 60591
--> https://bugs.winehq.org/attachment.cgi?id=60591
The sourcebrella-pinpoint screenshot of a memory leak defect.
We find a memory leak defect in the file tools/winebuild/import.c.
I've uploaded a screenshot of the leak trace.
Gang
Sourcebrella
--
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=44602
Bug ID: 44602
Summary: Memory leak in [spec32.c:215]
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: fan.gang.cn(a)gmail.com
Distribution: ---
Created attachment 60590
--> https://bugs.winehq.org/attachment.cgi?id=60590
The sourcebrella-pinpoint screenshot of a memory leak defect.
We find a memory leak defect in the file tools/winebuild/spec32.c
I've uploaded a screenshot of the leak trace.
The function build_args_string() will allocate a piece of new mem and it should
be freed when finish using.
Gang
Sourcebrella
--
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=44598
Bug ID: 44598
Summary: Hebrew font: rendering of vowels is offset
Product: Wine
Version: 3.2
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: chris(a)vine-cottage.org.uk
Created attachment 60587
--> https://bugs.winehq.org/attachment.cgi?id=60587
Comparison of font rendering in wine and Windows
Using theWord http://www.theword.net/index.php?article.download&l=english to
view a Hebrew bible, the font rendering of Hebrew vowel points is incorrect.
All fonts I have tried show inconsistencies, the best font appears to be Cardo.
In the attached image, the top 2 lines of text shows the font rendering in
Wine. The bottom 2 lines of text are the same text rendered in Windows 7. I
have circled some of the incorrect rendering in Red. Other fonts show more
significant offsets of vowel points from the correct positions.
--
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=41633
Bug ID: 41633
Summary: Dark GTK3 Labels are white
Product: Wine-staging
Version: 1.9.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: electricprism(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 56008
--> https://bugs.winehq.org/attachment.cgi?id=56008
wine gtk dark theme black text
When using GTK3, and a dark theme the labels on tabs have the text black
instead of white.
This is visible in both Notepad++ and also WineCFG
--
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.