Description: Patch adds explicit casts to intptr_t or uintptr_t types
to prevent casting to/from pointer from/to integers of different size.
Last-Modified: Wed, 09 Jul 2014 19:20:07 +0400
--- a/generic/bltBgexec.c
+++ b/generic/bltBgexec.c
- sinkPtr->file = (Tcl_File)NULL;
+ sinkPtr->file = (Tcl_File)0;
sinkPtr->byteArr = sinkPtr->staticSpace;
sinkPtr->size = DEF_BUFFER_SIZE;
sinkPtr->encoding = encoding;
Blt_Free(sinkPtr->byteArr);
- sinkPtr->file = (Tcl_File)NULL;
+ sinkPtr->file = (Tcl_File)0;
#if (TCL_MAJOR_VERSION >= 8)
if (sinkPtr->objv != NULL) {
Tcl_DeleteFileHandler(sinkPtr->fd);
- sinkPtr->file = (Tcl_File)NULL;
+ sinkPtr->file = (Tcl_File)0;
TreeDestroyValues(nodePtr);
- hPtr = Blt_FindHashEntry(&treeObjPtr->nodeTable, (char *)nodePtr->inode);
+ hPtr = Blt_FindHashEntry(&treeObjPtr->nodeTable, (char *)(intptr_t)nodePtr->inode);
Blt_DeleteHashEntry(&treeObjPtr->nodeTable, hPtr);
/* Generate an unique serial number for this node. */
inode = treeObjPtr->nextInode++;
- hPtr = Blt_CreateHashEntry(&treeObjPtr->nodeTable,(char *)inode,
+ hPtr = Blt_CreateHashEntry(&treeObjPtr->nodeTable,(char *)(intptr_t)inode,
nodePtr = NewNode(treeObjPtr, name, inode);
treeObjPtr = parentPtr->treeObject;
- hPtr = Blt_CreateHashEntry(&treeObjPtr->nodeTable,(char *)inode, &isNew);
+ hPtr = Blt_CreateHashEntry(&treeObjPtr->nodeTable,(char *)(intptr_t)inode, &isNew);