Skip to content

Commit

Permalink
Merge branch 'HealthIntersections-master' into linuxscripts
Browse files Browse the repository at this point in the history
  • Loading branch information
costateixeira committed Jan 5, 2024
2 parents 44fc581 + 2e0a5fb commit f3ca42f
Show file tree
Hide file tree
Showing 4 changed files with 189 additions and 190 deletions.
2 changes: 1 addition & 1 deletion library/fsl/fsl_gzip.pas
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function gzcompress(bytes : TBytes; header : boolean; level: dword=9) : TBytes;

function gzuncompress(bytes : TBytes) : TBytes;
begin
result := zflate.gzuncompress(bytes);
result := zflate.gzuncompress(readZLibHeader(bytes));
if length(result) = 0 then
raise EFslException.create('Failed to read compressed content: '+zflatetranslatecode(zlasterror));
//BytesToFile(bytes, '/Users/grahamegrieve/temp/test.tgz');
Expand Down
1 change: 0 additions & 1 deletion library/web/fsl_npm_cache.pas
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,6 @@ function TFHIRPackageManager.loadArchive(content: TBytes): TDictionary<String, T
b : TBytes;
begin
Logging.log('Loading Package ('+DescribeBytes(length(content))+')');
BytesToFile(content, '/Users/grahamegrieve/temp/package.bin');
work(0, false, 'Loading Package ('+DescribeBytes(length(content))+')');
try
result := TDictionary<String, TBytes>.Create;
Expand Down
2 changes: 1 addition & 1 deletion server/fhirserver.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@
</Target>
<SearchPaths>
<IncludeFiles Value="$(ProjOutDir);../library"/>
<Libraries Value="/usr/local/lib64/"/>
<Libraries Value="/usr/local/lib64"/>
<OtherUnitFiles Value="../library/fsl/tests;../library/fhir/tests;../library/fhir4/tests;../library/fhir4b/tests;../library/fhir5/tests;../library/ftx/tests;../library/fxver/tests;../library/cda/tests;../library/v2/tests;../library/fdb/tests;modules;tests;admin;../library/fcomp/tests;tx"/>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
Expand Down
Loading

0 comments on commit f3ca42f

Please sign in to comment.