Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37730734
en ru br
Репозитории ALT
S:2.3.4-alt1
5.1: 0.9.7-alt1
4.1: 0.9.7-alt0.1
4.0: 0.9.7-alt0.1
3.0:
+backports:0.9.7-alt0.M30.0.1
www.altlinux.org/Changes

Группа :: Система/Библиотеки
Пакет: librsync

 Главная   Изменения   Спек   Патчи   Sources   Загрузить   Gear   Bugs and FR  Repocop 

Патч: librsync-debian-4gb.patch
Скачать


Author: n/a
Description:
 Fixes problem when transfering >4GB from a 32bit to 64bit host
 (Closes: #355178).
diff -Naurp librsync.orig/mdfour.h librsync/mdfour.h
--- librsync.orig/mdfour.h	2008-06-21 14:50:55.000000000 +0200
+++ librsync/mdfour.h	2008-06-24 10:26:49.000000000 +0200
@@ -24,7 +24,7 @@
 #include "types.h"
 
 struct rs_mdfour {
-    int                 A, B, C, D;
+    unsigned int        A, B, C, D;
 #if HAVE_UINT64
     uint64_t            totalN;
 #else
diff -Naurp librsync.orig/patch.c librsync/patch.c
--- librsync.orig/patch.c	2008-06-21 14:50:55.000000000 +0200
+++ librsync/patch.c	2008-06-24 10:26:49.000000000 +0200
@@ -214,12 +214,12 @@ static rs_result rs_patch_s_copying(rs_j
     void            *buf, *ptr;
     rs_buffers_t    *buffs = job->stream;
 
-    len = job->basis_len;
-    
     /* copy only as much as will fit in the output buffer, so that we
      * don't have to block or store the input. */
-    if (len > buffs->avail_out)
+    if (job->basis_len > buffs->avail_out)
         len = buffs->avail_out;
+    else
+        len = job->basis_len;
 
     if (!len)
         return RS_BLOCKED;
 
дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
текущий майнтейнер: Michael Shigorin