Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9ad96367
Commit
9ad96367
authored
Mar 19, 2000
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Mar 19, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed most calls to xmalloc/xrealloc.
parent
abdb034f
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
166 additions
and
112 deletions
+166
-112
init.c
graphics/win16drv/init.c
+6
-3
bitblt.c
graphics/x11drv/bitblt.c
+0
-1
brush.c
graphics/x11drv/brush.c
+0
-1
dib.c
graphics/x11drv/dib.c
+13
-4
graphics.c
graphics/x11drv/graphics.c
+24
-11
palette.c
graphics/x11drv/palette.c
+23
-6
x11drv.h
include/x11drv.h
+1
-3
winestub.c
library/winestub.c
+5
-2
segment.c
loader/ne/segment.c
+15
-6
virtual.c
memory/virtual.c
+0
-1
main.c
misc/main.c
+0
-1
printdrv.c
misc/printdrv.c
+17
-11
registry.c
misc/registry.c
+18
-3
xmalloc.c
misc/xmalloc.c
+0
-33
palette.c
objects/palette.c
+15
-6
client.c
scheduler/client.c
+5
-4
critsection.c
scheduler/critsection.c
+11
-10
clipboard.c
windows/clipboard.c
+11
-4
clipboard.c
windows/ttydrv/clipboard.c
+1
-1
keyboard.c
windows/ttydrv/keyboard.c
+1
-1
No files found.
graphics/win16drv/init.c
View file @
9ad96367
...
@@ -13,7 +13,6 @@
...
@@ -13,7 +13,6 @@
#include "heap.h"
#include "heap.h"
#include "font.h"
#include "font.h"
#include "options.h"
#include "options.h"
#include "xmalloc.h"
#include "debugtools.h"
#include "debugtools.h"
#include "dc.h"
#include "dc.h"
...
@@ -225,8 +224,12 @@ BOOL WIN16DRV_CreateDC( DC *dc, LPCSTR driver, LPCSTR device, LPCSTR output,
...
@@ -225,8 +224,12 @@ BOOL WIN16DRV_CreateDC( DC *dc, LPCSTR driver, LPCSTR device, LPCSTR output,
/* Now Get the device capabilities from the printer driver */
/* Now Get the device capabilities from the printer driver */
printerDevCaps
=
(
DeviceCaps
*
)
xmalloc
(
sizeof
(
DeviceCaps
));
printerDevCaps
=
(
DeviceCaps
*
)
calloc
(
1
,
sizeof
(
DeviceCaps
));
memset
(
printerDevCaps
,
0
,
sizeof
(
DeviceCaps
));
if
(
printerDevCaps
==
NULL
)
{
ERR
(
"No memory to read the device capabilities!"
);
HeapFree
(
GetProcessHeap
(),
0
,
physDev
);
return
FALSE
;
}
if
(
!
output
)
output
=
"LPT1:"
;
if
(
!
output
)
output
=
"LPT1:"
;
/* Get GDIINFO which is the same as a DeviceCaps structure */
/* Get GDIINFO which is the same as a DeviceCaps structure */
...
...
graphics/x11drv/bitblt.c
View file @
9ad96367
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#include "options.h"
#include "options.h"
#include "x11drv.h"
#include "x11drv.h"
#include "debugtools.h"
#include "debugtools.h"
#include "xmalloc.h"
/* for XCREATEIMAGE macro */
DEFAULT_DEBUG_CHANNEL
(
bitblt
)
DEFAULT_DEBUG_CHANNEL
(
bitblt
)
...
...
graphics/x11drv/brush.c
View file @
9ad96367
...
@@ -16,7 +16,6 @@
...
@@ -16,7 +16,6 @@
#include "color.h"
#include "color.h"
#include "x11drv.h"
#include "x11drv.h"
#include "debugtools.h"
#include "debugtools.h"
#include "xmalloc.h"
/* for XCREATEIMAGE macro */
#include "monitor.h"
#include "monitor.h"
#include "local.h"
#include "local.h"
...
...
graphics/x11drv/dib.c
View file @
9ad96367
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
# endif
# endif
#endif
/* defined(HAVE_LIBXXSHM) */
#endif
/* defined(HAVE_LIBXXSHM) */
#include <stdlib.h>
#include "windef.h"
#include "windef.h"
#include "bitmap.h"
#include "bitmap.h"
#include "x11drv.h"
#include "x11drv.h"
...
@@ -30,7 +31,6 @@
...
@@ -30,7 +31,6 @@
#include "callback.h"
#include "callback.h"
#include "selectors.h"
#include "selectors.h"
#include "global.h"
#include "global.h"
#include "xmalloc.h"
/* for XCREATEIMAGE macro */
DEFAULT_DEBUG_CHANNEL
(
bitmap
)
DEFAULT_DEBUG_CHANNEL
(
bitmap
)
DECLARE_DEBUG_CHANNEL
(
x11drv
)
DECLARE_DEBUG_CHANNEL
(
x11drv
)
...
@@ -2510,7 +2510,12 @@ int X11DRV_DIB_SetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
...
@@ -2510,7 +2510,12 @@ int X11DRV_DIB_SetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
DefaultVisualOfScreen
(
X11DRV_GetXScreen
()),
DefaultVisualOfScreen
(
X11DRV_GetXScreen
()),
descr
->
depth
,
ZPixmap
,
0
,
NULL
,
descr
->
depth
,
ZPixmap
,
0
,
NULL
,
descr
->
infoWidth
,
lines
,
32
,
0
);
descr
->
infoWidth
,
lines
,
32
,
0
);
bmpImage
->
data
=
xcalloc
(
bmpImage
->
bytes_per_line
*
lines
);
bmpImage
->
data
=
calloc
(
lines
,
bmpImage
->
bytes_per_line
);
if
(
bmpImage
->
data
==
NULL
)
{
ERR
(
"Out of memory!"
);
XDestroyImage
(
bmpImage
);
return
lines
;
}
}
}
/* Transfer the pixels */
/* Transfer the pixels */
...
@@ -2610,8 +2615,12 @@ int X11DRV_DIB_GetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
...
@@ -2610,8 +2615,12 @@ int X11DRV_DIB_GetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
DefaultVisualOfScreen
(
X11DRV_GetXScreen
()),
DefaultVisualOfScreen
(
X11DRV_GetXScreen
()),
descr
->
depth
,
ZPixmap
,
0
,
NULL
,
descr
->
depth
,
ZPixmap
,
0
,
NULL
,
descr
->
infoWidth
,
lines
,
32
,
0
);
descr
->
infoWidth
,
lines
,
32
,
0
);
bmpImage
->
data
=
xcalloc
(
bmpImage
->
bytes_per_line
*
lines
);
bmpImage
->
data
=
calloc
(
lines
,
bmpImage
->
bytes_per_line
);
}
if
(
bmpImage
->
data
==
NULL
)
{
ERR
(
"Out of memory!"
);
XDestroyImage
(
bmpImage
);
return
lines
;
}
}
XGetSubImage
(
display
,
descr
->
drawable
,
descr
->
xDest
,
descr
->
yDest
,
XGetSubImage
(
display
,
descr
->
drawable
,
descr
->
xDest
,
descr
->
yDest
,
descr
->
width
,
descr
->
height
,
AllPlanes
,
ZPixmap
,
descr
->
width
,
descr
->
height
,
AllPlanes
,
ZPixmap
,
...
...
graphics/x11drv/graphics.c
View file @
9ad96367
...
@@ -40,7 +40,6 @@
...
@@ -40,7 +40,6 @@
#include "region.h"
#include "region.h"
#include "struct32.h"
#include "struct32.h"
#include "debugtools.h"
#include "debugtools.h"
#include "xmalloc.h"
DEFAULT_DEBUG_CHANNEL
(
graphics
)
DEFAULT_DEBUG_CHANNEL
(
graphics
)
...
@@ -977,7 +976,11 @@ X11DRV_Polyline( DC *dc, const POINT* pt, INT count )
...
@@ -977,7 +976,11 @@ X11DRV_Polyline( DC *dc, const POINT* pt, INT count )
if
((
oldwidth
=
physDev
->
pen
.
width
)
==
0
)
physDev
->
pen
.
width
=
1
;
if
((
oldwidth
=
physDev
->
pen
.
width
)
==
0
)
physDev
->
pen
.
width
=
1
;
points
=
(
XPoint
*
)
xmalloc
(
sizeof
(
XPoint
)
*
(
count
));
if
(
!
(
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
count
)))
{
WARN
(
"No memory to convert POINTs to XPoints!
\n
"
);
return
FALSE
;
}
for
(
i
=
0
;
i
<
count
;
i
++
)
for
(
i
=
0
;
i
<
count
;
i
++
)
{
{
points
[
i
].
x
=
dc
->
w
.
DCOrgX
+
XLPTODP
(
dc
,
pt
[
i
].
x
);
points
[
i
].
x
=
dc
->
w
.
DCOrgX
+
XLPTODP
(
dc
,
pt
[
i
].
x
);
...
@@ -996,7 +999,7 @@ X11DRV_Polyline( DC *dc, const POINT* pt, INT count )
...
@@ -996,7 +999,7 @@ X11DRV_Polyline( DC *dc, const POINT* pt, INT count )
X11DRV_DIB_UpdateDIBSection
(
dc
,
TRUE
);
X11DRV_DIB_UpdateDIBSection
(
dc
,
TRUE
);
}
}
free
(
points
);
HeapFree
(
GetProcessHeap
(),
0
,
points
);
physDev
->
pen
.
width
=
oldwidth
;
physDev
->
pen
.
width
=
oldwidth
;
return
TRUE
;
return
TRUE
;
}
}
...
@@ -1013,7 +1016,11 @@ X11DRV_Polygon( DC *dc, const POINT* pt, INT count )
...
@@ -1013,7 +1016,11 @@ X11DRV_Polygon( DC *dc, const POINT* pt, INT count )
X11DRV_PDEVICE
*
physDev
=
(
X11DRV_PDEVICE
*
)
dc
->
physDev
;
X11DRV_PDEVICE
*
physDev
=
(
X11DRV_PDEVICE
*
)
dc
->
physDev
;
BOOL
update
=
FALSE
;
BOOL
update
=
FALSE
;
points
=
(
XPoint
*
)
xmalloc
(
sizeof
(
XPoint
)
*
(
count
+
1
));
if
(
!
(
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
(
count
+
1
)
)))
{
WARN
(
"No memory to convert POINTs to XPoints!
\n
"
);
return
FALSE
;
}
for
(
i
=
0
;
i
<
count
;
i
++
)
for
(
i
=
0
;
i
<
count
;
i
++
)
{
{
points
[
i
].
x
=
dc
->
w
.
DCOrgX
+
XLPTODP
(
dc
,
pt
[
i
].
x
);
points
[
i
].
x
=
dc
->
w
.
DCOrgX
+
XLPTODP
(
dc
,
pt
[
i
].
x
);
...
@@ -1040,7 +1047,7 @@ X11DRV_Polygon( DC *dc, const POINT* pt, INT count )
...
@@ -1040,7 +1047,7 @@ X11DRV_Polygon( DC *dc, const POINT* pt, INT count )
/* Update the DIBSection from the pixmap */
/* Update the DIBSection from the pixmap */
if
(
update
)
X11DRV_DIB_UpdateDIBSection
(
dc
,
TRUE
);
if
(
update
)
X11DRV_DIB_UpdateDIBSection
(
dc
,
TRUE
);
free
(
points
);
HeapFree
(
GetProcessHeap
(),
0
,
points
);
return
TRUE
;
return
TRUE
;
}
}
...
@@ -1072,8 +1079,11 @@ X11DRV_PolyPolygon( DC *dc, const POINT* pt, const INT* counts, UINT polygons)
...
@@ -1072,8 +1079,11 @@ X11DRV_PolyPolygon( DC *dc, const POINT* pt, const INT* counts, UINT polygons)
X11DRV_DIB_UpdateDIBSection
(
dc
,
FALSE
);
X11DRV_DIB_UpdateDIBSection
(
dc
,
FALSE
);
for
(
i
=
0
;
i
<
polygons
;
i
++
)
if
(
counts
[
i
]
>
max
)
max
=
counts
[
i
];
for
(
i
=
0
;
i
<
polygons
;
i
++
)
if
(
counts
[
i
]
>
max
)
max
=
counts
[
i
];
points
=
(
XPoint
*
)
xmalloc
(
sizeof
(
XPoint
)
*
(
max
+
1
)
);
if
(
!
(
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
(
max
+
1
)
)))
{
WARN
(
"No memory to convert POINTs to XPoints!
\n
"
);
return
FALSE
;
}
for
(
i
=
0
;
i
<
polygons
;
i
++
)
for
(
i
=
0
;
i
<
polygons
;
i
++
)
{
{
for
(
j
=
0
;
j
<
counts
[
i
];
j
++
)
for
(
j
=
0
;
j
<
counts
[
i
];
j
++
)
...
@@ -1090,7 +1100,7 @@ X11DRV_PolyPolygon( DC *dc, const POINT* pt, const INT* counts, UINT polygons)
...
@@ -1090,7 +1100,7 @@ X11DRV_PolyPolygon( DC *dc, const POINT* pt, const INT* counts, UINT polygons)
/* Update the DIBSection of the dc's bitmap */
/* Update the DIBSection of the dc's bitmap */
X11DRV_DIB_UpdateDIBSection
(
dc
,
TRUE
);
X11DRV_DIB_UpdateDIBSection
(
dc
,
TRUE
);
free
(
points
);
HeapFree
(
GetProcessHeap
(),
0
,
points
);
}
}
return
TRUE
;
return
TRUE
;
}
}
...
@@ -1113,8 +1123,11 @@ X11DRV_PolyPolyline( DC *dc, const POINT* pt, const DWORD* counts, DWORD polylin
...
@@ -1113,8 +1123,11 @@ X11DRV_PolyPolyline( DC *dc, const POINT* pt, const DWORD* counts, DWORD polylin
X11DRV_DIB_UpdateDIBSection
(
dc
,
FALSE
);
X11DRV_DIB_UpdateDIBSection
(
dc
,
FALSE
);
for
(
i
=
0
;
i
<
polylines
;
i
++
)
if
(
counts
[
i
]
>
max
)
max
=
counts
[
i
];
for
(
i
=
0
;
i
<
polylines
;
i
++
)
if
(
counts
[
i
]
>
max
)
max
=
counts
[
i
];
points
=
(
XPoint
*
)
xmalloc
(
sizeof
(
XPoint
)
*
(
max
+
1
)
);
if
(
!
(
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
(
max
+
1
)
)))
{
WARN
(
"No memory to convert POINTs to XPoints!
\n
"
);
return
FALSE
;
}
for
(
i
=
0
;
i
<
polylines
;
i
++
)
for
(
i
=
0
;
i
<
polylines
;
i
++
)
{
{
for
(
j
=
0
;
j
<
counts
[
i
];
j
++
)
for
(
j
=
0
;
j
<
counts
[
i
];
j
++
)
...
@@ -1131,7 +1144,7 @@ X11DRV_PolyPolyline( DC *dc, const POINT* pt, const DWORD* counts, DWORD polylin
...
@@ -1131,7 +1144,7 @@ X11DRV_PolyPolyline( DC *dc, const POINT* pt, const DWORD* counts, DWORD polylin
/* Update the DIBSection of the dc's bitmap */
/* Update the DIBSection of the dc's bitmap */
X11DRV_DIB_UpdateDIBSection
(
dc
,
TRUE
);
X11DRV_DIB_UpdateDIBSection
(
dc
,
TRUE
);
free
(
points
);
HeapFree
(
GetProcessHeap
(),
0
,
points
);
}
}
return
TRUE
;
return
TRUE
;
}
}
...
...
graphics/x11drv/palette.c
View file @
9ad96367
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
#include "xmalloc.h"
#include "xmalloc.h"
#include "x11drv.h"
#include "x11drv.h"
DEFAULT_DEBUG_CHANNEL
(
palette
)
DEFAULT_DEBUG_CHANNEL
(
palette
)
;
/* Palette indexed mode:
/* Palette indexed mode:
* logical palette -> mapping -> pixel
* logical palette -> mapping -> pixel
...
@@ -463,21 +463,32 @@ static BOOL X11DRV_PALETTE_BuildSharedMap(void)
...
@@ -463,21 +463,32 @@ static BOOL X11DRV_PALETTE_BuildSharedMap(void)
(
X11DRV_PALETTE_PaletteFlags
&
X11DRV_PALETTE_VIRTUAL
||
!
(
X11DRV_PALETTE_PaletteFlags
&
X11DRV_PALETTE_FIXED
))
)
(
X11DRV_PALETTE_PaletteFlags
&
X11DRV_PALETTE_VIRTUAL
||
!
(
X11DRV_PALETTE_PaletteFlags
&
X11DRV_PALETTE_FIXED
))
)
?
NB_RESERVED_COLORS
/
2
:
-
1
;
?
NB_RESERVED_COLORS
/
2
:
-
1
;
COLOR_sysPal
=
(
PALETTEENTRY
*
)
xmalloc
(
sizeof
(
PALETTEENTRY
)
*
256
);
COLOR_sysPal
=
(
PALETTEENTRY
*
)
malloc
(
sizeof
(
PALETTEENTRY
)
*
256
);
if
(
COLOR_sysPal
==
NULL
)
{
ERR
(
"Can not allocate system palette!
\n
"
);
return
FALSE
;
}
/* setup system palette entry <-> pixel mappings and fill in 20 fixed entries */
/* setup system palette entry <-> pixel mappings and fill in 20 fixed entries */
if
(
MONITOR_GetDepth
(
&
MONITOR_PrimaryMonitor
)
<=
8
)
if
(
MONITOR_GetDepth
(
&
MONITOR_PrimaryMonitor
)
<=
8
)
{
{
X11DRV_PALETTE_XPixelToPalette
=
(
int
*
)
xmalloc
(
sizeof
(
int
)
*
256
);
X11DRV_PALETTE_XPixelToPalette
=
(
int
*
)
calloc
(
256
,
sizeof
(
int
));
memset
(
X11DRV_PALETTE_XPixelToPalette
,
0
,
256
*
sizeof
(
int
)
);
if
(
X11DRV_PALETTE_XPixelToPalette
==
NULL
)
{
ERR
(
"Out of memory: XPixelToPalette!
\n
"
);
return
FALSE
;
}
}
}
/* for hicolor visuals PaletteToPixel mapping is used to skip
/* for hicolor visuals PaletteToPixel mapping is used to skip
* RGB->pixel calculation in X11DRV_PALETTE_ToPhysical().
* RGB->pixel calculation in X11DRV_PALETTE_ToPhysical().
*/
*/
X11DRV_PALETTE_PaletteToXPixel
=
(
int
*
)
xmalloc
(
sizeof
(
int
)
*
256
);
X11DRV_PALETTE_PaletteToXPixel
=
(
int
*
)
malloc
(
sizeof
(
int
)
*
256
);
if
(
X11DRV_PALETTE_PaletteToXPixel
==
NULL
)
{
ERR
(
"Out of memory: PaletteToXPixel!
\n
"
);
return
FALSE
;
}
for
(
i
=
j
=
0
;
i
<
256
;
i
++
)
for
(
i
=
j
=
0
;
i
<
256
;
i
++
)
{
{
...
@@ -851,6 +862,7 @@ int X11DRV_PALETTE_SetMapping( PALETTEOBJ* palPtr, UINT uStart, UINT uNum, BOOL
...
@@ -851,6 +862,7 @@ int X11DRV_PALETTE_SetMapping( PALETTEOBJ* palPtr, UINT uStart, UINT uNum, BOOL
char
flag
;
char
flag
;
int
prevMapping
=
(
palPtr
->
mapping
)
?
1
:
0
;
int
prevMapping
=
(
palPtr
->
mapping
)
?
1
:
0
;
int
index
,
iRemapped
=
0
;
int
index
,
iRemapped
=
0
;
int
*
mapping
;
/* reset dynamic system palette entries */
/* reset dynamic system palette entries */
...
@@ -859,8 +871,13 @@ int X11DRV_PALETTE_SetMapping( PALETTEOBJ* palPtr, UINT uStart, UINT uNum, BOOL
...
@@ -859,8 +871,13 @@ int X11DRV_PALETTE_SetMapping( PALETTEOBJ* palPtr, UINT uStart, UINT uNum, BOOL
/* initialize palette mapping table */
/* initialize palette mapping table */
palPtr
->
mapping
=
(
int
*
)
x
realloc
(
palPtr
->
mapping
,
sizeof
(
int
)
*
mapping
=
(
int
*
)
realloc
(
palPtr
->
mapping
,
sizeof
(
int
)
*
palPtr
->
logpalette
.
palNumEntries
);
palPtr
->
logpalette
.
palNumEntries
);
if
(
mapping
==
NULL
)
{
ERR
(
"Can not allocate new mapping -- memory exausted!"
);
return
0
;
}
palPtr
->
mapping
=
mapping
;
for
(
uNum
+=
uStart
;
uStart
<
uNum
;
uStart
++
)
for
(
uNum
+=
uStart
;
uStart
<
uNum
;
uStart
++
)
{
{
...
...
include/x11drv.h
View file @
9ad96367
...
@@ -191,7 +191,7 @@ extern void _XInitImageFuncPtrs(XImage *);
...
@@ -191,7 +191,7 @@ extern void _XInitImageFuncPtrs(XImage *);
{ \
{ \
int width_bytes = X11DRV_DIB_GetXImageWidthBytes( (width), (bpp) ); \
int width_bytes = X11DRV_DIB_GetXImageWidthBytes( (width), (bpp) ); \
(image) = TSXCreateImage(display, DefaultVisualOfScreen(X11DRV_GetXScreen()), \
(image) = TSXCreateImage(display, DefaultVisualOfScreen(X11DRV_GetXScreen()), \
(bpp), ZPixmap, 0,
xcalloc( (height)*
width_bytes ),\
(bpp), ZPixmap, 0,
calloc( (height),
width_bytes ),\
(width), (height), 32, width_bytes ); \
(width), (height), 32, width_bytes ); \
}
}
...
@@ -250,8 +250,6 @@ typedef struct
...
@@ -250,8 +250,6 @@ typedef struct
}
X11DRV_DIB_IMAGEBITS_DESCR
;
}
X11DRV_DIB_IMAGEBITS_DESCR
;
extern
int
X11DRV_DIB_GetImageBits
(
const
X11DRV_DIB_IMAGEBITS_DESCR
*
descr
);
extern
int
X11DRV_DIB_SetImageBits
(
const
X11DRV_DIB_IMAGEBITS_DESCR
*
descr
);
extern
int
*
X11DRV_DIB_BuildColorMap
(
struct
tagDC
*
dc
,
WORD
coloruse
,
extern
int
*
X11DRV_DIB_BuildColorMap
(
struct
tagDC
*
dc
,
WORD
coloruse
,
WORD
depth
,
const
BITMAPINFO
*
info
,
WORD
depth
,
const
BITMAPINFO
*
info
,
int
*
nColors
);
int
*
nColors
);
...
...
library/winestub.c
View file @
9ad96367
...
@@ -5,7 +5,6 @@
...
@@ -5,7 +5,6 @@
#include "winbase.h"
#include "winbase.h"
#include "wingdi.h"
#include "wingdi.h"
#include "winuser.h"
#include "winuser.h"
#include "xmalloc.h"
extern
int
PASCAL
WinMain
(
HINSTANCE
,
HINSTANCE
,
LPSTR
,
int
);
extern
int
PASCAL
WinMain
(
HINSTANCE
,
HINSTANCE
,
LPSTR
,
int
);
...
@@ -33,7 +32,11 @@ int main( int argc, char *argv [] )
...
@@ -33,7 +32,11 @@ int main( int argc, char *argv [] )
/* Alloc szCmdParam */
/* Alloc szCmdParam */
for
(
i
=
1
;
i
<
argc
;
i
++
)
len
+=
strlen
(
argv
[
i
])
+
1
;
for
(
i
=
1
;
i
<
argc
;
i
++
)
len
+=
strlen
(
argv
[
i
])
+
1
;
lpszCmdParam
=
(
LPSTR
)
xmalloc
(
len
+
1
);
lpszCmdParam
=
(
LPSTR
)
malloc
(
len
+
1
);
if
(
lpszCmdParam
==
NULL
)
{
MESSAGE
(
"Not enough memory to store command parameters!"
);
return
1
;
}
/* Concatenate arguments */
/* Concatenate arguments */
if
(
argc
>
1
)
strcpy
(
lpszCmdParam
,
argv
[
1
]);
if
(
argc
>
1
)
strcpy
(
lpszCmdParam
,
argv
[
1
]);
else
lpszCmdParam
[
0
]
=
'\0'
;
else
lpszCmdParam
[
0
]
=
'\0'
;
...
...
loader/ne/segment.c
View file @
9ad96367
...
@@ -27,7 +27,6 @@
...
@@ -27,7 +27,6 @@
#include "stackframe.h"
#include "stackframe.h"
#include "builtin16.h"
#include "builtin16.h"
#include "debugtools.h"
#include "debugtools.h"
#include "xmalloc.h"
#include "toolhelp.h"
#include "toolhelp.h"
DECLARE_DEBUG_CHANNEL
(
dll
)
DECLARE_DEBUG_CHANNEL
(
dll
)
...
@@ -138,8 +137,14 @@ BOOL NE_LoadSegment( NE_MODULE *pModule, WORD segnum )
...
@@ -138,8 +137,14 @@ BOOL NE_LoadSegment( NE_MODULE *pModule, WORD segnum )
but may be missing something. If you have any doc please either send
but may be missing something. If you have any doc please either send
it to me or fix the code yourself. gfm@werple.mira.net.au
it to me or fix the code yourself. gfm@werple.mira.net.au
*/
*/
char
*
buff
=
xmalloc
(
size
);
char
*
buff
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
char
*
curr
=
buff
;
char
*
curr
=
buff
;
if
(
buff
==
NULL
)
{
WARN_
(
dll
)(
"Memory exausted!"
);
return
FALSE
;
}
ReadFile
(
hf
,
buff
,
size
,
&
res
,
NULL
);
ReadFile
(
hf
,
buff
,
size
,
&
res
,
NULL
);
while
(
curr
<
buff
+
size
)
{
while
(
curr
<
buff
+
size
)
{
unsigned
int
rept
=
*
((
short
*
)
curr
)
++
;
unsigned
int
rept
=
*
((
short
*
)
curr
)
++
;
...
@@ -152,7 +157,7 @@ BOOL NE_LoadSegment( NE_MODULE *pModule, WORD segnum )
...
@@ -152,7 +157,7 @@ BOOL NE_LoadSegment( NE_MODULE *pModule, WORD segnum )
}
}
curr
+=
len
;
curr
+=
len
;
}
}
free
(
buff
);
HeapFree
(
GetProcessHeap
(),
0
,
buff
);
}
}
pSeg
->
flags
|=
NE_SEGFLAGS_LOADED
;
pSeg
->
flags
|=
NE_SEGFLAGS_LOADED
;
...
@@ -175,7 +180,11 @@ BOOL NE_LoadSegment( NE_MODULE *pModule, WORD segnum )
...
@@ -175,7 +180,11 @@ BOOL NE_LoadSegment( NE_MODULE *pModule, WORD segnum )
(
char
*
)
pModule
+
pModule
->
name_table
+
1
,
(
char
*
)
pModule
+
pModule
->
name_table
+
1
,
segnum
,
pSeg
->
hSeg
);
segnum
,
pSeg
->
hSeg
);
reloc_entries
=
(
struct
relocation_entry_s
*
)
xmalloc
(
count
*
sizeof
(
struct
relocation_entry_s
));
reloc_entries
=
(
struct
relocation_entry_s
*
)
HeapAlloc
(
GetProcessHeap
(),
0
,
count
*
sizeof
(
struct
relocation_entry_s
));
if
(
reloc_entries
==
NULL
)
{
WARN_
(
fixup
)(
"Not enough memory for relocation entries!"
);
return
FALSE
;
}
if
(
!
ReadFile
(
hf
,
reloc_entries
,
count
*
sizeof
(
struct
relocation_entry_s
),
&
res
,
NULL
)
||
if
(
!
ReadFile
(
hf
,
reloc_entries
,
count
*
sizeof
(
struct
relocation_entry_s
),
&
res
,
NULL
)
||
(
res
!=
count
*
sizeof
(
struct
relocation_entry_s
)))
(
res
!=
count
*
sizeof
(
struct
relocation_entry_s
)))
{
{
...
@@ -362,7 +371,7 @@ BOOL NE_LoadSegment( NE_MODULE *pModule, WORD segnum )
...
@@ -362,7 +371,7 @@ BOOL NE_LoadSegment( NE_MODULE *pModule, WORD segnum )
}
}
}
}
free
(
reloc_entries
);
HeapFree
(
GetProcessHeap
(),
0
,
reloc_entries
);
return
TRUE
;
return
TRUE
;
unknown:
unknown:
...
@@ -370,7 +379,7 @@ unknown:
...
@@ -370,7 +379,7 @@ unknown:
"TYPE %d, OFFSET %04x, TARGET %04x %04x
\n
"
,
"TYPE %d, OFFSET %04x, TARGET %04x %04x
\n
"
,
i
+
1
,
rep
->
address_type
,
rep
->
relocation_type
,
i
+
1
,
rep
->
address_type
,
rep
->
relocation_type
,
rep
->
offset
,
rep
->
target1
,
rep
->
target2
);
rep
->
offset
,
rep
->
target1
,
rep
->
target2
);
free
(
reloc_entries
);
HeapFree
(
GetProcessHeap
(),
0
,
reloc_entries
);
return
FALSE
;
return
FALSE
;
}
}
...
...
memory/virtual.c
View file @
9ad96367
...
@@ -24,7 +24,6 @@
...
@@ -24,7 +24,6 @@
#include "winerror.h"
#include "winerror.h"
#include "file.h"
#include "file.h"
#include "process.h"
#include "process.h"
#include "xmalloc.h"
#include "global.h"
#include "global.h"
#include "server.h"
#include "server.h"
#include "debugtools.h"
#include "debugtools.h"
...
...
misc/main.c
View file @
9ad96367
...
@@ -32,7 +32,6 @@
...
@@ -32,7 +32,6 @@
#include "builtin32.h"
#include "builtin32.h"
#include "debugtools.h"
#include "debugtools.h"
#include "debugdefs.h"
#include "debugdefs.h"
#include "xmalloc.h"
#include "module.h"
#include "module.h"
#include "version.h"
#include "version.h"
#include "winnls.h"
#include "winnls.h"
...
...
misc/printdrv.c
View file @
9ad96367
...
@@ -23,7 +23,6 @@
...
@@ -23,7 +23,6 @@
#include "gdi.h"
#include "gdi.h"
#include "dc.h"
#include "dc.h"
#include "callback.h"
#include "callback.h"
#include "xmalloc.h"
#include "options.h"
#include "options.h"
#include "heap.h"
#include "heap.h"
...
@@ -345,7 +344,7 @@ INT16 WINAPI ExtractPQ16(HPQ16 hPQ)
...
@@ -345,7 +344,7 @@ INT16 WINAPI ExtractPQ16(HPQ16 hPQ)
prev
->
next
=
queue
->
next
;
prev
->
next
=
queue
->
next
;
else
else
hpqueue
=
queue
->
next
;
hpqueue
=
queue
->
next
;
free
(
queue
);
HeapFree
(
GetProcessHeap
(),
0
,
queue
);
}
}
TRACE
(
"%x got tag %d key %d
\n
"
,
hPQ
,
tag
,
key
);
TRACE
(
"%x got tag %d key %d
\n
"
,
hPQ
,
tag
,
key
);
...
@@ -359,7 +358,11 @@ INT16 WINAPI ExtractPQ16(HPQ16 hPQ)
...
@@ -359,7 +358,11 @@ INT16 WINAPI ExtractPQ16(HPQ16 hPQ)
*/
*/
INT16
WINAPI
InsertPQ16
(
HPQ16
hPQ
,
INT16
tag
,
INT16
key
)
INT16
WINAPI
InsertPQ16
(
HPQ16
hPQ
,
INT16
tag
,
INT16
key
)
{
{
struct
hpq
*
queueItem
=
xmalloc
(
sizeof
(
struct
hpq
));
struct
hpq
*
queueItem
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
struct
hpq
));
if
(
queueItem
==
NULL
)
{
ERR
(
"Memory exausted!"
);
return
FALSE
;
}
queueItem
->
next
=
hpqueue
;
queueItem
->
next
=
hpqueue
;
hpqueue
=
queueItem
;
hpqueue
=
queueItem
;
queueItem
->
key
=
key
;
queueItem
->
key
=
key
;
...
@@ -487,10 +490,10 @@ static int FreePrintJob(HANDLE16 hJob)
...
@@ -487,10 +490,10 @@ static int FreePrintJob(HANDLE16 hJob)
if
(
pPrintJob
!=
NULL
)
if
(
pPrintJob
!=
NULL
)
{
{
gPrintJobsTable
[
pPrintJob
->
nIndex
]
=
NULL
;
gPrintJobsTable
[
pPrintJob
->
nIndex
]
=
NULL
;
free
(
pPrintJob
->
pszOutput
);
HeapFree
(
GetProcessHeap
(),
0
,
pPrintJob
->
pszOutput
);
free
(
pPrintJob
->
pszTitle
);
HeapFree
(
GetProcessHeap
(),
0
,
pPrintJob
->
pszTitle
);
if
(
pPrintJob
->
fd
>=
0
)
close
(
pPrintJob
->
fd
);
if
(
pPrintJob
->
fd
>=
0
)
close
(
pPrintJob
->
fd
);
free
(
pPrintJob
);
HeapFree
(
GetProcessHeap
(),
0
,
pPrintJob
);
nRet
=
SP_OK
;
nRet
=
SP_OK
;
}
}
return
nRet
;
return
nRet
;
...
@@ -516,14 +519,17 @@ HPJOB16 WINAPI OpenJob16(LPCSTR lpOutput, LPCSTR lpTitle, HDC16 hDC)
...
@@ -516,14 +519,17 @@ HPJOB16 WINAPI OpenJob16(LPCSTR lpOutput, LPCSTR lpTitle, HDC16 hDC)
fd
=
CreateSpoolFile
(
lpOutput
);
fd
=
CreateSpoolFile
(
lpOutput
);
if
(
fd
>=
0
)
if
(
fd
>=
0
)
{
{
hHandle
=
1
;
pPrintJob
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
PRINTJOB
));
if
(
pPrintJob
==
NULL
)
{
WARN
(
"Memory exausted!"
);
return
hHandle
;
}
pPrintJob
=
xmalloc
(
sizeof
(
PRINTJOB
));
hHandle
=
1
;
memset
(
pPrintJob
,
0
,
sizeof
(
PRINTJOB
));
pPrintJob
->
pszOutput
=
strdup
(
lpOutput
);
pPrintJob
->
pszOutput
=
HEAP_strdupA
(
GetProcessHeap
(),
0
,
lpOutput
);
if
(
lpTitle
)
if
(
lpTitle
)
pPrintJob
->
pszTitle
=
strdup
(
lpTitle
);
pPrintJob
->
pszTitle
=
HEAP_strdupA
(
GetProcessHeap
(),
0
,
lpTitle
);
pPrintJob
->
hDC
=
hDC
;
pPrintJob
->
hDC
=
hDC
;
pPrintJob
->
fd
=
fd
;
pPrintJob
->
fd
=
fd
;
pPrintJob
->
nIndex
=
0
;
pPrintJob
->
nIndex
=
0
;
...
...
misc/registry.c
View file @
9ad96367
...
@@ -44,7 +44,6 @@
...
@@ -44,7 +44,6 @@
#include "file.h"
#include "file.h"
#include "heap.h"
#include "heap.h"
#include "debugtools.h"
#include "debugtools.h"
#include "xmalloc.h"
#include "options.h"
#include "options.h"
#include "winreg.h"
#include "winreg.h"
#include "server.h"
#include "server.h"
...
@@ -73,6 +72,17 @@ static void REGISTRY_Init(void);
...
@@ -73,6 +72,17 @@ static void REGISTRY_Init(void);
#define UNICONVMASK ((1<<REG_SZ)|(1<<REG_MULTI_SZ)|(1<<REG_EXPAND_SZ))
#define UNICONVMASK ((1<<REG_SZ)|(1<<REG_MULTI_SZ)|(1<<REG_EXPAND_SZ))
static
void
*
xmalloc
(
size_t
size
)
{
void
*
res
;
res
=
malloc
(
size
?
size
:
1
);
if
(
res
==
NULL
)
{
WARN
(
"Virtual memory exhausted.
\n
"
);
exit
(
1
);
}
return
res
;
}
/*
/*
* QUESTION
* QUESTION
...
@@ -404,8 +414,13 @@ static int _wine_read_line( FILE *F, char **buf, int *len )
...
@@ -404,8 +414,13 @@ static int _wine_read_line( FILE *F, char **buf, int *len )
if
(
NULL
==
(
s
=
strchr
(
curread
,
'\n'
)))
{
if
(
NULL
==
(
s
=
strchr
(
curread
,
'\n'
)))
{
/* buffer wasn't large enough */
/* buffer wasn't large enough */
curoff
=
strlen
(
*
buf
);
curoff
=
strlen
(
*
buf
);
*
buf
=
xrealloc
(
*
buf
,
*
len
*
2
);
curread
=
realloc
(
*
buf
,
*
len
*
2
);
curread
=
*
buf
+
curoff
;
if
(
curread
==
NULL
)
{
WARN
(
"Out of memory"
);
return
0
;
}
*
buf
=
curread
;
curread
+=
curoff
;
mylen
=
*
len
;
/* we filled up the buffer and
mylen
=
*
len
;
/* we filled up the buffer and
* got new '*len' bytes to fill
* got new '*len' bytes to fill
*/
*/
...
...
misc/xmalloc.c
View file @
9ad96367
...
@@ -31,36 +31,3 @@ void *xmalloc( size_t size )
...
@@ -31,36 +31,3 @@ void *xmalloc( size_t size )
memset
(
res
,
0
,
size
);
memset
(
res
,
0
,
size
);
return
res
;
return
res
;
}
}
void
*
xcalloc
(
size_t
size
)
{
void
*
res
;
res
=
xmalloc
(
size
);
memset
(
res
,
0
,
size
);
return
res
;
}
void
*
xrealloc
(
void
*
ptr
,
size_t
size
)
{
void
*
res
=
realloc
(
ptr
,
size
);
if
((
res
==
NULL
)
&&
size
)
{
MESSAGE
(
"Virtual memory exhausted.
\n
"
);
exit
(
1
);
}
return
res
;
}
char
*
xstrdup
(
const
char
*
str
)
{
char
*
res
=
strdup
(
str
);
if
(
!
res
)
{
MESSAGE
(
"Virtual memory exhausted.
\n
"
);
exit
(
1
);
}
return
res
;
}
objects/palette.c
View file @
9ad96367
...
@@ -18,7 +18,6 @@
...
@@ -18,7 +18,6 @@
#include "gdi.h"
#include "gdi.h"
#include "color.h"
#include "color.h"
#include "palette.h"
#include "palette.h"
#include "xmalloc.h"
#include "debugtools.h"
#include "debugtools.h"
#include "winerror.h"
#include "winerror.h"
...
@@ -64,15 +63,14 @@ HPALETTE16 PALETTE_Init(void)
...
@@ -64,15 +63,14 @@ HPALETTE16 PALETTE_Init(void)
palPtr
->
palPalEntry
[
i
].
peFlags
=
0
;
palPtr
->
palPalEntry
[
i
].
peFlags
=
0
;
}
}
hpalette
=
CreatePalette16
(
palPtr
);
hpalette
=
CreatePalette16
(
palPtr
);
HeapFree
(
GetProcessHeap
(),
0
,
palPtr
);
palObj
=
(
PALETTEOBJ
*
)
GDI_GetObjPtr
(
hpalette
,
PALETTE_MAGIC
);
palObj
=
(
PALETTEOBJ
*
)
GDI_GetObjPtr
(
hpalette
,
PALETTE_MAGIC
);
if
(
palObj
)
if
(
palObj
)
{
{
palObj
->
mapping
=
xmalloc
(
sizeof
(
int
)
*
20
);
if
(
!
(
palObj
->
mapping
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
int
)
*
20
)))
ERR
(
"Can not create palette mapping -- out of memory!"
);
GDI_HEAP_UNLOCK
(
hpalette
);
GDI_HEAP_UNLOCK
(
hpalette
);
HeapFree
(
GetProcessHeap
(),
0
,
palPtr
);
}
}
return
hpalette
;
return
hpalette
;
...
@@ -336,7 +334,18 @@ BOOL WINAPI ResizePalette(
...
@@ -336,7 +334,18 @@ BOOL WINAPI ResizePalette(
if
(
!
palPtr
)
return
FALSE
;
if
(
!
palPtr
)
return
FALSE
;
if
(
mapping
)
if
(
mapping
)
palPtr
->
mapping
=
(
int
*
)
xrealloc
(
mapping
,
cEntries
*
sizeof
(
int
)
);
{
int
*
newMap
=
(
int
*
)
HeapReAlloc
(
GetProcessHeap
(),
0
,
mapping
,
cEntries
*
sizeof
(
int
)
);
if
(
newMap
==
NULL
)
{
ERR
(
"Can not resize mapping -- out of memory!"
);
GDI_HEAP_UNLOCK
(
hPal
);
return
FALSE
;
}
palPtr
->
mapping
=
newMap
;
}
if
(
cEntries
>
cPrevEnt
)
if
(
cEntries
>
cPrevEnt
)
{
{
if
(
mapping
)
if
(
mapping
)
...
...
scheduler/client.c
View file @
9ad96367
...
@@ -30,7 +30,6 @@
...
@@ -30,7 +30,6 @@
#include "server.h"
#include "server.h"
#include "winerror.h"
#include "winerror.h"
#include "options.h"
#include "options.h"
#include "xmalloc.h"
/* Some versions of glibc don't define this */
/* Some versions of glibc don't define this */
#ifndef SCM_RIGHTS
#ifndef SCM_RIGHTS
...
@@ -305,7 +304,8 @@ static void start_server( const char *oldcwd )
...
@@ -305,7 +304,8 @@ static void start_server( const char *oldcwd )
execl
(
BINDIR
"/wineserver"
,
"wineserver"
,
NULL
);
execl
(
BINDIR
"/wineserver"
,
"wineserver"
,
NULL
);
if
(
oldcwd
)
chdir
(
oldcwd
);
if
(
oldcwd
)
chdir
(
oldcwd
);
/* now try the dir we were launched from */
/* now try the dir we were launched from */
path
=
xmalloc
(
strlen
(
argv0
)
+
20
);
if
(
!
(
path
=
malloc
(
strlen
(
argv0
)
+
20
)))
fatal_error
(
"out of memory
\n
"
);
if
((
p
=
strrchr
(
strcpy
(
path
,
argv0
),
'/'
)))
if
((
p
=
strrchr
(
strcpy
(
path
,
argv0
),
'/'
)))
{
{
strcpy
(
p
,
"/wineserver"
);
strcpy
(
p
,
"/wineserver"
);
...
@@ -396,7 +396,7 @@ int CLIENT_InitServer(void)
...
@@ -396,7 +396,7 @@ int CLIENT_InitServer(void)
/* retrieve the current directory */
/* retrieve the current directory */
for
(
size
=
512
;
;
size
*=
2
)
for
(
size
=
512
;
;
size
*=
2
)
{
{
oldcwd
=
xmalloc
(
size
)
;
if
(
!
(
oldcwd
=
malloc
(
size
)))
break
;
if
(
getcwd
(
oldcwd
,
size
))
break
;
if
(
getcwd
(
oldcwd
,
size
))
break
;
free
(
oldcwd
);
free
(
oldcwd
);
if
(
errno
==
ERANGE
)
continue
;
if
(
errno
==
ERANGE
)
continue
;
...
@@ -407,7 +407,8 @@ int CLIENT_InitServer(void)
...
@@ -407,7 +407,8 @@ int CLIENT_InitServer(void)
/* get the server directory name */
/* get the server directory name */
if
(
gethostname
(
hostname
,
sizeof
(
hostname
)
)
==
-
1
)
fatal_perror
(
"gethostname"
);
if
(
gethostname
(
hostname
,
sizeof
(
hostname
)
)
==
-
1
)
fatal_perror
(
"gethostname"
);
configdir
=
PROFILE_GetConfigDir
();
configdir
=
PROFILE_GetConfigDir
();
serverdir
=
xmalloc
(
strlen
(
configdir
)
+
strlen
(
SERVERDIR
)
+
strlen
(
hostname
)
+
1
);
serverdir
=
malloc
(
strlen
(
configdir
)
+
strlen
(
SERVERDIR
)
+
strlen
(
hostname
)
+
1
);
if
(
!
serverdir
)
fatal_error
(
"out of memory
\n
"
);
strcpy
(
serverdir
,
configdir
);
strcpy
(
serverdir
,
configdir
);
strcat
(
serverdir
,
SERVERDIR
);
strcat
(
serverdir
,
SERVERDIR
);
strcat
(
serverdir
,
hostname
);
strcat
(
serverdir
,
hostname
);
...
...
scheduler/critsection.c
View file @
9ad96367
...
@@ -115,20 +115,21 @@ void WINAPI EnterCriticalSection( CRITICAL_SECTION *crit )
...
@@ -115,20 +115,21 @@ void WINAPI EnterCriticalSection( CRITICAL_SECTION *crit )
*/
*/
BOOL
WINAPI
TryEnterCriticalSection
(
CRITICAL_SECTION
*
crit
)
BOOL
WINAPI
TryEnterCriticalSection
(
CRITICAL_SECTION
*
crit
)
{
{
if
(
InterlockedIncrement
(
&
crit
->
LockCount
))
BOOL
ret
=
FALSE
;
if
(
InterlockedCompareExchange
(
(
PVOID
*
)
&
crit
->
LockCount
,
(
PVOID
)
0L
,
(
PVOID
)
-
1L
)
==
(
PVOID
)
-
1L
)
{
{
if
(
crit
->
OwningThread
==
GetCurrentThreadId
())
crit
->
OwningThread
=
GetCurrentThreadId
();
crit
->
RecursionCount
=
1
;
ret
=
TRUE
;
}
else
if
(
crit
->
OwningThread
==
GetCurrentThreadId
())
{
{
InterlockedIncrement
(
&
crit
->
LockCount
);
crit
->
RecursionCount
++
;
crit
->
RecursionCount
++
;
return
TRUE
;
ret
=
TRUE
;
}
}
/* FIXME: this doesn't work */
return
ret
;
InterlockedDecrement
(
&
crit
->
LockCount
);
return
FALSE
;
}
crit
->
OwningThread
=
GetCurrentThreadId
();
crit
->
RecursionCount
=
1
;
return
TRUE
;
}
}
...
...
windows/clipboard.c
View file @
9ad96367
...
@@ -33,7 +33,6 @@
...
@@ -33,7 +33,6 @@
#include "task.h"
#include "task.h"
#include "queue.h"
#include "queue.h"
#include "clipboard.h"
#include "clipboard.h"
#include "xmalloc.h"
#include "debugtools.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
clipboard
)
DEFAULT_DEBUG_CHANNEL
(
clipboard
)
...
@@ -1042,13 +1041,21 @@ UINT16 WINAPI RegisterClipboardFormat16( LPCSTR FormatName )
...
@@ -1042,13 +1041,21 @@ UINT16 WINAPI RegisterClipboardFormat16( LPCSTR FormatName )
/* allocate storage for new format entry */
/* allocate storage for new format entry */
lpNewFormat
=
(
LPWINE_CLIPFORMAT
)
xmalloc
(
sizeof
(
WINE_CLIPFORMAT
));
lpNewFormat
=
(
LPWINE_CLIPFORMAT
)
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
WINE_CLIPFORMAT
));
if
(
lpNewFormat
==
NULL
)
{
WARN
(
"No more memory for a new format!"
);
return
0
;
}
lpFormat
->
NextFormat
=
lpNewFormat
;
lpFormat
->
NextFormat
=
lpNewFormat
;
lpNewFormat
->
wFormatID
=
LastRegFormat
;
lpNewFormat
->
wFormatID
=
LastRegFormat
;
lpNewFormat
->
wRefCount
=
1
;
lpNewFormat
->
wRefCount
=
1
;
lpNewFormat
->
Name
=
(
LPSTR
)
xmalloc
(
strlen
(
FormatName
)
+
1
);
lpNewFormat
->
Name
=
(
LPSTR
)
HEAP_strdupA
(
GetProcessHeap
(),
0
,
FormatName
);
strcpy
(
lpNewFormat
->
Name
,
FormatName
);
if
(
lpNewFormat
->
Name
==
NULL
)
{
WARN
(
"No more memory for the new format name!"
);
HeapFree
(
GetProcessHeap
(),
0
,
lpNewFormat
);
return
0
;
}
lpNewFormat
->
wDataPresent
=
0
;
lpNewFormat
->
wDataPresent
=
0
;
lpNewFormat
->
hData16
=
0
;
lpNewFormat
->
hData16
=
0
;
...
...
windows/ttydrv/clipboard.c
View file @
9ad96367
...
@@ -66,7 +66,7 @@ BOOL TTYDRV_CLIPBOARD_RegisterFormat( LPCSTR FormatName )
...
@@ -66,7 +66,7 @@ BOOL TTYDRV_CLIPBOARD_RegisterFormat( LPCSTR FormatName )
}
}
/**************************************************************************
/**************************************************************************
*
X11
DRV_CLIPBOARD_IsSelectionowner
*
TTY
DRV_CLIPBOARD_IsSelectionowner
*
*
* Returns: TRUE - We(WINE) own the selection, FALSE - Selection not owned by us
* Returns: TRUE - We(WINE) own the selection, FALSE - Selection not owned by us
*/
*/
...
...
windows/ttydrv/keyboard.c
View file @
9ad96367
...
@@ -77,7 +77,7 @@ void TTYDRV_KEYBOARD_Beep()
...
@@ -77,7 +77,7 @@ void TTYDRV_KEYBOARD_Beep()
}
}
/***********************************************************************
/***********************************************************************
*
X11
DRV_KEYBOARD_GetDIState
*
TTY
DRV_KEYBOARD_GetDIState
*/
*/
BOOL
TTYDRV_KEYBOARD_GetDIState
(
DWORD
len
,
LPVOID
ptr
)
BOOL
TTYDRV_KEYBOARD_GetDIState
(
DWORD
len
,
LPVOID
ptr
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment