- Timestamp:
- Dec 25, 2018, 9:47:30 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kObjCache/kObjCache.c
r3167 r3239 943 943 cchInput -= psz - pszInput; 944 944 pszInput = psz; 945 /* fall thru */ 945 946 946 947 case kOCDepState_NeedHash: … … 955 956 cchInput--; 956 957 enmState = kOCDepState_NeedLine_l; 958 /* fall thru */ 957 959 958 960 case kOCDepState_NeedLine_l: … … 979 981 if (!--cchInput) 980 982 return pDepState->enmState = kOCDepState_NeedLine_i; 983 /* fall thru */ 981 984 982 985 case kOCDepState_NeedLine_i: … … 986 989 if (!--cchInput) 987 990 return pDepState->enmState = kOCDepState_NeedLine_n; 991 /* fall thru */ 988 992 989 993 case kOCDepState_NeedLine_n: … … 993 997 if (!--cchInput) 994 998 return pDepState->enmState = kOCDepState_NeedLine_e; 999 /* fall thru */ 995 1000 996 1001 case kOCDepState_NeedLine_e: … … 1000 1005 if (!--cchInput) 1001 1006 return pDepState->enmState = kOCDepState_NeedSpaceBeforeDigit; 1007 /* fall thru */ 1002 1008 1003 1009 case kOCDepState_NeedSpaceBeforeDigit: … … 1006 1012 pszInput++; 1007 1013 cchInput--; 1014 /* fall thru */ 1008 1015 1009 1016 case kOCDepState_NeedFirstDigit: … … 1017 1024 pszInput++; 1018 1025 cchInput--; 1026 /* fall thru */ 1019 1027 1020 1028 case kOCDepState_NeedMoreDigits: … … 1023 1031 if (!cchInput) 1024 1032 return pDepState->enmState = kOCDepState_NeedMoreDigits; 1033 /* fall thru */ 1025 1034 1026 1035 case kOCDepState_NeedQuote: … … 1034 1043 pszInput++; 1035 1044 cchInput--; 1045 /* fall thru */ 1036 1046 1037 1047 case kOCDepState_NeedEndQuote: … … 1081 1091 } 1082 1092 } 1093 /* fall thru */ 1083 1094 1084 1095 case kOCDepState_Invalid:
Note:
See TracChangeset
for help on using the changeset viewer.