소스 검색

fix string_length

...i don't know where this caused problems, but unpatched, it is wrong :)
I saw this when searching an other bug..
main
Frank 8 년 전
부모
커밋
ff8dff341f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      SerialFlashDirectory.cpp

+ 1
- 1
SerialFlashDirectory.cpp 파일 보기

@@ -239,7 +239,7 @@ static uint32_t string_length(uint32_t addr)
len++;
if (*p == 0) return len;
}
addr += len;
addr += sizeof(buf);
}
}


Loading…
취소
저장