Ignore:
Timestamp:
Sep 25, 2000, 8:58:53 PM (25 years ago)
Author:
sandervl
Message:

no need to save fs twice

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/oslibdos.cpp

    r4319 r4323  
    1 /* $Id: oslibdos.cpp,v 1.44 2000-09-25 04:35:01 phaller Exp $ */
     1/* $Id: oslibdos.cpp,v 1.45 2000-09-25 18:58:53 sandervl Exp $ */
    22/*
    33 * Wrappers for OS/2 Dos* API
     
    20412041ULONG OSLibDosQuerySysInfo(ULONG iStart, ULONG iLast, PVOID pBuf, ULONG cbBuf)
    20422042{
    2043   USHORT sel = RestoreOS2FS();
    20442043  APIRET rc;
    20452044 
    2046   rc = DosQuerySysInfo(iStart, iLast, pBuf, cbBuf);
    2047  
    2048   SetFS(sel);
     2045  rc = DosQuerySysInfo(iStart, iLast, pBuf, cbBuf);
    20492046  SetLastError(error2WinError(rc,ERROR_INVALID_HANDLE));
    20502047  return rc;
Note: See TracChangeset for help on using the changeset viewer.