We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e02099 commit 8a4cbdeCopy full SHA for 8a4cbde
sapi/phpdbg/phpdbg_bp.c
@@ -1206,14 +1206,14 @@ PHPDBG_API void phpdbg_delete_breakpoint(zend_ulong num) /* {{{ */
1206
name = estrdup(brake->name);
1207
name_len = strlen(name);
1208
if (zend_hash_num_elements(&PHPDBG_G(bp)[type]) == 1) {
1209
- PHPDBG_G(flags) &= ~(1<<(brake->type+1));
+ PHPDBG_G(flags) &= ~(1ull<<(brake->type+1));
1210
}
1211
1212
break;
1213
1214
default: {
1215
if (zend_hash_num_elements(table) == 1) {
1216
1217
1218
1219
0 commit comments