Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 03 Sep 2019 14:07:48 -0000
From:      Bruce Evans <bde@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r346280 - head/lib/libvgl
Message-ID:  <201904161552.x3GFq4Bk080990@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bde
Date: Tue Apr 16 15:52:04 2019
New Revision: 346280
URL: https://svnweb.freebsd.org/changeset/base/346280

Log:
  Sigh, r346279 was also a test version with the reduced size doubled (so
  it was actually double the full size in current kernels where the reduction
  is null, so overran the mmapped() buffer).

Modified:
  head/lib/libvgl/main.c

Modified: head/lib/libvgl/main.c
==============================================================================
--- head/lib/libvgl/main.c	Tue Apr 16 15:41:45 2019	(r346279)
+++ head/lib/libvgl/main.c	Tue Apr 16 15:52:04 2019	(r346280)
@@ -275,7 +275,7 @@ VGLInit(int mode)
    * get the same efficiency and bugs for all kernels.
    */
   if (VGLModeInfo.vi_mode >= M_VESA_BASE)
-    VGLBufSize = 2*VGLAdpInfo.va_line_width*VGLModeInfo.vi_height*
+    VGLBufSize = VGLAdpInfo.va_line_width*VGLModeInfo.vi_height*
                  VGLModeInfo.vi_planes;
   VGLBuf = malloc(VGLBufSize);
   if (VGLBuf == NULL) {





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904161552.x3GFq4Bk080990>