From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53866 invoked by alias); 2 Jun 2016 18:05:30 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 53854 invoked by uid 89); 2 Jun 2016 18:05:30 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=2016-05-18 X-HELO: gproxy6-pub.mail.unifiedlayer.com Received: from gproxy6-pub.mail.unifiedlayer.com (HELO gproxy6-pub.mail.unifiedlayer.com) (67.222.39.168) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with SMTP; Thu, 02 Jun 2016 18:05:20 +0000 Received: (qmail 25607 invoked by uid 0); 2 Jun 2016 18:05:18 -0000 Received: from unknown (HELO CMOut01) (10.0.90.82) by gproxy6.mail.unifiedlayer.com with SMTP; 2 Jun 2016 18:05:18 -0000 Received: from box522.bluehost.com ([74.220.219.122]) by CMOut01 with id 1u5C1t00i2f2jeq01u5FrG; Thu, 02 Jun 2016 12:05:16 -0600 X-Authority-Analysis: v=2.1 cv=OPe0g0qB c=1 sm=1 tr=0 a=GsOEXm/OWkKvwdLVJsfwcA==:117 a=GsOEXm/OWkKvwdLVJsfwcA==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=PnD2wP_eR3oA:10 a=-N9Dh3nx2ZYA:10 a=pD_ry4oyNxEA:10 a=zstS-IiYAAAA:8 a=LghCYoEIjGurrpwjo9YA:9 a=4G6NA9xxw8l3yy4pmD5M:22 Received: from [65.128.48.199] (port=51256 helo=pokyo) by box522.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.86_2) (envelope-from ) id 1b8WzZ-0008A2-32; Thu, 02 Jun 2016 12:05:13 -0600 From: Tom Tromey To: Tom Tromey Cc: gdb-patches@sourceware.org Subject: Re: [RFA] Fix PR python/18984 References: <1463614581-18216-1-git-send-email-tom@tromey.com> Date: Thu, 02 Jun 2016 18:05:00 -0000 In-Reply-To: <1463614581-18216-1-git-send-email-tom@tromey.com> (Tom Tromey's message of "Wed, 18 May 2016 17:36:21 -0600") Message-ID: <87shwvwjoq.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.94 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Identified-User: {36111:box522.bluehost.com:elynrobi:tromey.com} {sentby:smtp auth 65.128.48.199 authed with tom+tromey.com} X-Exim-ID: 1b8WzZ-0008A2-32 X-Source-Sender: (pokyo) [65.128.48.199]:51256 X-Source-Auth: tom+tromey.com X-Email-Count: 0 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTIyLmJsdWVob3N0LmNvbQ== X-SW-Source: 2016-06/txt/msg00042.txt.bz2 >>>>> "Tom" == Tom Tromey writes: Tom> This fixes PR python/18984. Tom> The bug is that gdbpy_solib_name uses GDB_PY_LL_ARG, whereas it should Tom> use GDB_PY_LLU_ARG to avoid overflow. Tom> Built and tested on x86-64 Fedora 23. Tom> 2016-05-18 Tom Tromey Tom> PR python/18984: Tom> * python/python.c (gdbpy_solib_name): Use GDB_PY_LLU_ARG. Ping. This one bit me again today, and the fix is particularly simple. Tom