]> git.p6c8.net - jirafeau_project.git/commitdiff
[BUGFIX] remove useless ob_flush
authorJerome Jutteau <jerome@jutteau.fr>
Fri, 20 Nov 2020 18:22:08 +0000 (19:22 +0100)
committerJerome Jutteau <jerome@jutteau.fr>
Fri, 20 Nov 2020 18:22:08 +0000 (19:22 +0100)
- Could generate notices which corrupt files
- Does not seem to be effective

https://www.php.net/manual/en/function.ob-flush.php#109699

Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
admin.php
f.php
script.php

index a42b20fa3dc68ec435768022a9b00c7dc4825b6b..e5ba8bd3fa2a774d690a26bfc433479522a6a4eb 100644 (file)
--- a/admin.php
+++ b/admin.php
@@ -277,7 +277,6 @@ if (php_sapi_name() == "cli") {
               $r = fopen(VAR_FILES . $p . $l['hash'], 'r');
               while (!feof($r)) {
                   print fread($r, 1024);
-                  ob_flush();
               }
               fclose($r);
           }
diff --git a/f.php b/f.php
index d61caebf7ef0db0cf51cfa1792113f833e9ff3a8..8f7aa37d48765060b406307cd9ae6ecdecd64105 100644 (file)
--- a/f.php
+++ b/f.php
@@ -268,7 +268,6 @@ else if ($link['crypted']) {
     while (!feof($r)) {
         $dec = mdecrypt_generic($m, fread($r, 1024));
         print $dec;
-        ob_flush();
     }
     fclose($r);
     /* Cleanup. */
@@ -280,7 +279,6 @@ else {
     $r = fopen(VAR_FILES . $p . $link['hash'], 'r');
     while (!feof($r)) {
         print fread($r, 1024);
-        ob_flush();
     }
     fclose($r);
 }
index 2cc716b7f48c36da21fe0407672d5cee8723f317..cd7cec60ad7ec74a5389b79816ce213cd1ac10ff 100644 (file)
@@ -198,7 +198,6 @@ if (isset($_FILES['file']) && is_writable(VAR_FILES)
     $r = fopen(VAR_FILES . $p . $link['hash'], 'r');
     while (!feof($r)) {
         print fread($r, 1024);
-        ob_flush();
     }
     fclose($r);
 

patrick-canterino.de