Skip to content

Commit 4356bbd

Browse files
committed
test
1 parent ce3cc3f commit 4356bbd

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/matrix.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ def main(ref_name):
202202
"TARGET": TARGET,
203203
"CC": CC,
204204
"FLAGS": [
205-
"USE_OBSOLETE_LINKER=1",
206205
'ARCH_FLAGS="-g -fsanitize=address,leak"',
207206
'OPT_CFLAGS="-O1"',
208207
"USE_ZLIB=1",

.github/workflows/fedora-rawhide.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- uses: ./.github/actions/setup-vtest
3535
- name: Compile HAProxy with ${{ matrix.platform.cc }}
3636
run: |
37-
make -j3 CC=${{ matrix.platform.cc }} V=1 ERR=1 TARGET=linux-glibc USE_OBSOLETE_LINKER=1 DEBUG="-DDEBUG_POOL_INTEGRITY -DDEBUG_UNIT" USE_PROMEX=1 USE_OPENSSL=1 USE_QUIC=1 USE_ZLIB=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_LUA=1 ADDLIB="${{ matrix.platform.ADDLIB_ATOMIC }}" ARCH_FLAGS="-g -fsanitize=address ${{ matrix.platform.ARCH_FLAGS }}"
37+
make -j3 CC=${{ matrix.platform.cc }} V=1 ERR=1 TARGET=linux-glibc DEBUG="-DDEBUG_POOL_INTEGRITY -DDEBUG_UNIT" USE_PROMEX=1 USE_OPENSSL=1 USE_QUIC=1 USE_ZLIB=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_LUA=1 ADDLIB="${{ matrix.platform.ADDLIB_ATOMIC }}" ARCH_FLAGS="-g -fsanitize=address ${{ matrix.platform.ARCH_FLAGS }}"
3838
make install
3939
- name: Show HAProxy version
4040
id: show-version

include/haproxy/initcall.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ __attribute__((constructor)) static void __initcb_##linenum() \
182182
* stage <stg>.
183183
*/
184184
#define FOREACH_INITCALL(p,stg) \
185-
for ((p) = &(__start_i_##stg); (p) < &(__stop_i_##stg); (p)++)
185+
for ((p) = __start_i_##stg; (p) < __stop_i_##stg; (p)++)
186186

187187
#else // USE_OBSOLETE_LINKER
188188

0 commit comments

Comments
 (0)