From 17870f6d9fd45524f08ad067e0ad7a57a9fed719 Mon Sep 17 00:00:00 2001 From: das Date: Wed, 6 May 2009 16:36:28 +0000 Subject: avoid panic for CFStrings longer than INT_MAX --- macosx/tkMacOSXInit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c index e54938b..2eaa883 100644 --- a/macosx/tkMacOSXInit.c +++ b/macosx/tkMacOSXInit.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXInit.c,v 1.34.2.2 2008/06/19 00:13:10 das Exp $ + * RCS: @(#) $Id: tkMacOSXInit.c,v 1.34.2.3 2009/05/06 16:36:28 das Exp $ */ #include "tkMacOSXPrivate.h" @@ -584,7 +584,7 @@ TkMacOSXGetStringObjFromCFString( CFIndex len; if (CFStringGetBytes(str, all, kCFStringEncodingUTF8, 0, false, NULL, - 0, &len) > 0) { + 0, &len) > 0 && len < INT_MAX) { obj = Tcl_NewObj(); Tcl_SetObjLength(obj, len); CFStringGetBytes(str, all, kCFStringEncodingUTF8, 0, false, -- cgit v0.12