소스 검색

#github-143 - MAPIType.isFixedLength: not true in case of length > 8

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1857708 13f79535-47bb-0310-9956-ffa450edef68
pull/145/head
Andreas Beeker 5 년 전
부모
커밋
56f71845cb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/scratchpad/src/org/apache/poi/hsmf/datatypes/Types.java

+ 1
- 1
src/scratchpad/src/org/apache/poi/hsmf/datatypes/Types.java 파일 보기

@@ -119,7 +119,7 @@ public final class Types {
* Is this type a fixed-length type, or a variable-length one?
*/
public boolean isFixedLength() {
return (length != -1);
return (length != -1) && (length <= 8);
}

public int getId() {

Loading…
취소
저장