From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 151AE3851AA2; Fri, 9 Sep 2022 11:47:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 151AE3851AA2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1662724044; bh=wP9NeWCb+GKyzfxyBc/MZaJIfFg9Mvarvb1skeEOyfk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=rhjx14vilVpew75OCEiAQNjAuZ0bw4o0cifybCkrdwLg+s1XIUVUPfv6fbdY/16Vo ymir5aMhoDeyIs9/hksifTjwQiFBe8n7W1I5YOfvhuEgityFf6rfMaGBOUwhrwLmnV ktl980+PU7ZOBnmwElzqlmFXqS6AM8eRwOT0UQDA= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgomp/106894] [13 regression] multiple libgomp failures after r13-2545-g9f2fca56593a2b Date: Fri, 09 Sep 2022 11:47:23 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgomp X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D106894 --- Comment #2 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:26a1f4fcb264d110708483815c8c8d7bb4ff6788 commit r13-2559-g26a1f4fcb264d110708483815c8c8d7bb4ff6788 Author: Jakub Jelinek Date: Fri Sep 9 13:43:43 2022 +0200 libgomp: Fix up OMP_PROC_BIND handling [PR106894] While the first param is char (gomp_global_icv.bind_var), the second pa= ram is char * (gomp_bind_var_list), so we shouldn't access it through *(char *). 2022-09-09 Jakub Jelinek PR libgomp/106894 * env.c (initialize_env) : Use char ** instead= of char * for dest[1] initialization from params[1]. Formatting fixes.=