ref: 2e70bb584c10391aa59604ea5db7eb56e6038adf
parent: 2afc42d092745ff62907c8cda4ead96f9fe06a33
author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
date: Tue Mar 31 15:32:29 EDT 2026
fix: add case 0 to getimgcache2 size switch in egdi.c Agent-Logs-Url: https://github.com/yrk-lab/rd/sessions/24dbfd17-a8ab-4549-ae3f-f6c61bf285bf Co-authored-by: yrk-lab <11537279+yrk-lab@users.noreply.github.com>
--- a/egdi.c
+++ b/egdi.c
@@ -428,6 +428,7 @@
case 3: g = (g<<8) | *p++;
case 2: g = (g<<8) | *p++;
case 1: g = (g<<8) | *p++;
+ case 0: break;
}
size = g;
--
⑨