diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-06-28 12:32:54 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-06-28 14:47:42 +0200 |
commit | 50cce5eb4f7c2627622875d9360b66b6c3234afe (patch) | |
tree | 1d71ca680a77ea2fc03eddf67c251465c31ad6d2 /sapi/phpdbg/phpdbg_opcode.h | |
parent | c0bf3bc50cfe1ef47a233d5fa3763d7581a57871 (diff) | |
download | php-git-50cce5eb4f7c2627622875d9360b66b6c3234afe.tar.gz |
Avoid reliance on arena details on phpdbg oplog
Instead of guessing what the address of the first arena allocation
is going to be, embed the sentinel in the oplog_list structure
directly.
Diffstat (limited to 'sapi/phpdbg/phpdbg_opcode.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_opcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_opcode.h b/sapi/phpdbg/phpdbg_opcode.h index f84862fbae..b9e2fa506c 100644 --- a/sapi/phpdbg/phpdbg_opcode.h +++ b/sapi/phpdbg/phpdbg_opcode.h @@ -40,7 +40,7 @@ struct _phpdbg_oplog_entry { typedef struct _phpdbg_oplog_list phpdbg_oplog_list; struct _phpdbg_oplog_list { phpdbg_oplog_list *prev; - phpdbg_oplog_entry *start; + phpdbg_oplog_entry start; /* Only "next" member used. */ }; #endif /* PHPDBG_OPCODE_H */ |