guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 01/04: r6rs-ports: Accept 'port-position' values greater


From: Ludovic Courtès
Subject: [Guile-commits] 01/04: r6rs-ports: Accept 'port-position' values greater than 2^32.
Date: Thu, 19 Jul 2018 12:00:26 -0400 (EDT)

civodul pushed a commit to branch stable-2.2
in repository guile.

commit d677aca5c5e5b3a9f71af57243169904ba4a712c
Author: Ludovic Courtès <address@hidden>
Date:   Thu Jul 19 17:45:54 2018 +0200

    r6rs-ports: Accept 'port-position' values greater than 2^32.
    
    Reported by Ricardo Wurmus <address@hidden>.
    Fixes <https://bugs.gnu.org/32161>.
    
    * libguile/r6rs-ports.c (custom_binary_port_seek): Use 'scm_to_off_t'
    instead of 'scm_to_int'.
    * test-suite/tests/r6rs-ports.test ("8.2.7 Input Ports")["custom binary
    input port position, long offset"]: New test.
---
 libguile/r6rs-ports.c            |  4 ++--
 test-suite/tests/r6rs-ports.test | 12 +++++++++++-
 2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/libguile/r6rs-ports.c b/libguile/r6rs-ports.c
index 00eea04..fe49be8 100644
--- a/libguile/r6rs-ports.c
+++ b/libguile/r6rs-ports.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2009, 2010, 2011, 2013-2015 Free Software Foundation, Inc.
+/* Copyright (C) 2009, 2010, 2011, 2013-2015, 2018 Free Software Foundation, 
Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -219,7 +219,7 @@ custom_binary_port_seek (SCM port, scm_t_off offset, int 
whence)
          scm_wrong_type_arg_msg (FUNC_NAME, 0, port,
                                  "R6RS custom binary port with "
                                  "`port-position' support");
-       c_result = scm_to_int (result);
+       c_result = scm_to_off_t (result);
        if (offset == 0)
          /* We just want to know the current position.  */
          break;
diff --git a/test-suite/tests/r6rs-ports.test b/test-suite/tests/r6rs-ports.test
index ba3131f..e6ee10a 100644
--- a/test-suite/tests/r6rs-ports.test
+++ b/test-suite/tests/r6rs-ports.test
@@ -1,6 +1,6 @@
 ;;;; r6rs-ports.test --- R6RS I/O port tests.   -*- coding: utf-8; -*-
 ;;;;
-;;;; Copyright (C) 2009-2012, 2013-2015 Free Software Foundation, Inc.
+;;;; Copyright (C) 2009-2012, 2013-2015, 2018 Free Software Foundation, Inc.
 ;;;; Ludovic Courtès
 ;;;;
 ;;;; This library is free software; you can redistribute it and/or
@@ -498,6 +498,16 @@ not `set-port-position!'"
                          (u8-list->bytevector
                           (map char->integer (string->list "Port!")))))))
 
+  (pass-if-equal "custom binary input port position, long offset"
+      (expt 2 42)
+    ;; In Guile <= 2.2.4, 'seek' would throw to 'out-of-range'.
+    (let* ((port (make-custom-binary-input-port "the port"
+                                                (const 0)
+                                                (const (expt 2 42))
+                                                #f #f)))
+      (port-position port)))
+
+
   (pass-if-equal "custom binary input port buffered partial reads"
       "Hello Port!"
     ;; Check what happens when READ! returns less than COUNT bytes.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]