]> git.p6c8.net - devedit.git/commitdiff
http://forum.de.selfhtml.org/?t=101375&m=622582
authorpcanterino <>
Wed, 16 Feb 2005 14:10:40 +0000 (14:10 +0000)
committerpcanterino <>
Wed, 16 Feb 2005 14:10:40 +0000 (14:10 +0000)
This posting in a big german web developer forum sounds very convincing

modules/File/Access.pm

index dd6403bffaaab0fe18e6b5baa02c946023faf34a..ad2bc13091da3884db25a4bccaf82d72278281a8 100644 (file)
@@ -7,7 +7,7 @@ package File::Access;
 # using only one command
 #
 # Author:        Patrick Canterino <patrick@patshaping.de>
-# Last modified: 2005-02-12
+# Last modified: 2005-02-16
 #
 
 use strict;
@@ -151,7 +151,6 @@ sub file_read($;$)
 
  read(FILE, my $content, -s $file);
 
- file_lock(FILE,LOCK_UN)      or do { close(FILE); return };
  close(FILE)                  or return;
 
  return \$content;
@@ -179,7 +178,6 @@ sub file_save($$;$)
 
  print FILE $$content                             or do { close(FILE); return };
 
- file_lock(FILE,LOCK_UN)                          or do { close(FILE); return };
  close(FILE)                                      or return;
 
  return 1;

patrick-canterino.de