Просмотр исходного кода

add text at the top without failing in rred (Closes: #545694)
Patch from Bernhard R. Link, thanks!

David Kalnischkies лет назад: 17
Родитель
Сommit
ebf2e25b20
2 измененных файлов с 3 добавлено и 1 удалено
  1. 2 0
      debian/changelog
  2. 1 1
      methods/rred.cc

+ 2 - 0
debian/changelog

@@ -31,6 +31,8 @@ apt (0.7.24) UNRELEASED; urgency=low
     - move the description of files to globally usable entities
   * doc/apt_preferences.5.xml:
     - document the new preferences.d folder (Closes: #544017)
+  * methods/rred.cc:
+    - add at the top without failing (by Bernhard R. Link, Closes: #545694)
 
  -- David Kalnischkies <kalnischkies@gmail.com>  Fri, 28 Aug 2009 09:40:08 +0200
 

+ 1 - 1
methods/rred.cc

@@ -174,7 +174,7 @@ int RredMethod::ed_file(FILE *ed_cmds, FILE *in_file, FILE *out_file,
          hash);
    
    /* read the rest from infile */
-   if (result > 0) {
+   if (result >= 0) {
       while (fgets(buffer, BUF_SIZE, in_file) != NULL) {
          written = fwrite(buffer, 1, strlen(buffer), out_file);
          hash->Add((unsigned char*)buffer, written);