瀏覽代碼

* Avoid AV acessing page if band not assigned

git-svn-id: trunk@38930 -
michael 7 年之前
父節點
當前提交
75e4be46f9
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      packages/fcl-report/src/fpreport.pp

+ 4 - 1
packages/fcl-report/src/fpreport.pp

@@ -6940,7 +6940,10 @@ end;
 
 function TFPReportElement.GetReportPage: TFPReportCustomPage;
 begin
-  Result := Band.Page;
+  if Assigned(Band) then
+    Result := Band.Page
+  else
+    Result:=Nil;
 end;
 
 procedure TFPReportElement.SaveDataToNames;