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
efc8317b
Commit
efc8317b
authored
Nov 16, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Nov 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Remove incorrect references to malloc.
parent
f8829297
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ungif.h
dlls/oleaut32/ungif.h
+4
-4
No files found.
dlls/oleaut32/ungif.h
View file @
efc8317b
...
...
@@ -88,7 +88,7 @@ typedef struct GifColorType {
typedef
struct
ColorMapObject
{
int
ColorCount
;
int
BitsPerPixel
;
GifColorType
*
Colors
;
/* on malloc(3) heap */
GifColorType
*
Colors
;
}
ColorMapObject
;
typedef
struct
GifImageDesc
{
...
...
@@ -153,17 +153,17 @@ int DGifCloseFile(GifFileType * GifFile);
/* This is the in-core version of an extension record */
typedef
struct
{
int
ByteCount
;
char
*
Bytes
;
/* on malloc(3) heap */
char
*
Bytes
;
int
Function
;
/* Holds the type of the Extension block. */
}
ExtensionBlock
;
/* This holds an image header, its unpacked raster bits, and extensions */
typedef
struct
SavedImage
{
GifImageDesc
ImageDesc
;
unsigned
char
*
RasterBits
;
/* on malloc(3) heap */
unsigned
char
*
RasterBits
;
int
Function
;
/* DEPRECATED: Use ExtensionBlocks[x].Function instead */
int
ExtensionBlockCount
;
ExtensionBlock
*
ExtensionBlocks
;
/* on malloc(3) heap */
ExtensionBlock
*
ExtensionBlocks
;
}
SavedImage
;
#endif
/* _UNGIF_H_ */
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