惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
M
MIT News - Artificial intelligence
博客园 - 聂微东
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
C
Check Point Blog
云风的 BLOG
云风的 BLOG
腾讯CDC
H
Help Net Security
Y
Y Combinator Blog
I
InfoQ

mmix activity

Adding NXOR to the indes; bug report by A.Scherer (90d53fbf) · Commits · mmix / mmixware · GitLab Adding parentheses around <Scan a decimal constant> (0d240cd1) · 提交 · mmix / mmixware · GitLab fixing a typo and clarifying the packing of rG and rA (92054202) · 提交 · mmix / mmixware · GitLab adding test for non zero return of calloc (a980a4cd) · 提交 · mmix / mmixware · GitLab fixing the check for tininess of short floats (a191a0fb) · 提交 · mmix / mmixware · GitLab
Fixing possible buffer overrun in b command (d3e1c354) · ...
Ruckert, Martin · 2025-06-02 · via mmix activity
提交 d3e1c354 编辑于 作者: Ruckert, Martin's avatar Ruckert, Martin
浏览文件

Fixing possible buffer overrun in b command

原始行号 差异行号 差异行
@@ -3327,7 +3327,7 @@ case 't': case 'u': k=*p;
   else ll->bkpt &=~trace_bit;
 }
 break;
case 'b':@+ for (k=0,p++; !isxdigit(*p); p++)
case 'b':@+ for (k=0,p++; *p!=0 && !isxdigit(*p); p++)
   if (*p=='r') k|=read_bit;
   else if (*p=='w') k|=write_bit;
   else if (*p=='x') k|=exec_bit;