VirtualBox

Changeset 73511 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 5, 2018 2:20:03 PM (6 years ago)
Author:
vboxsync
Message:

HostServices: GCC 8.2.0 fixes

Location:
trunk/src/VBox/HostServices
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/DragAndDrop/service.cpp

    r72827 r73511  
    10911091            m_clientQueue.push_back(u32ClientID);
    10921092        }
    1093         catch (std::bad_alloc)
     1093        catch (std::bad_alloc &)
    10941094        {
    10951095            rc = VERR_NO_MEMORY;
  • trunk/src/VBox/HostServices/GuestControl/service.cpp

    r72827 r73511  
    544544            pHostCmd->AddRef();
    545545        }
    546         catch (std::bad_alloc)
     546        catch (std::bad_alloc &)
    547547        {
    548548            rc = VERR_NO_MEMORY;
     
    13661366            /* rc = */ RTListAppend(&mHostCmdList, &pHostCmd->Node);
    13671367    }
    1368     catch (std::bad_alloc)
     1368    catch (std::bad_alloc &)
    13691369    {
    13701370        rc = VERR_NO_MEMORY;
     
    15141514        }
    15151515    }
    1516     catch (std::bad_alloc)
     1516    catch (std::bad_alloc &)
    15171517    {
    15181518        rc = VERR_NO_MEMORY;
     
    15581558        }
    15591559    }
    1560     catch (std::bad_alloc)
     1560    catch (std::bad_alloc &)
    15611561    {
    15621562        rc = VERR_NO_MEMORY;
  • trunk/src/VBox/HostServices/GuestProperties/service.cpp

    r73100 r73511  
    781781                }
    782782            }
    783             catch (std::bad_alloc)
     783            catch (std::bad_alloc &)
    784784            {
    785785                rc = VERR_NO_MEMORY;
     
    12351235            mGuestNotifications.pop_front();
    12361236    }
    1237     catch (std::bad_alloc)
     1237    catch (std::bad_alloc &)
    12381238    {
    12391239        rc = VERR_NO_MEMORY;
     
    14181418        }
    14191419    }
    1420     catch (std::bad_alloc)
     1420    catch (std::bad_alloc &)
    14211421    {
    14221422        rc = VERR_NO_MEMORY;
     
    15541554        }
    15551555    }
    1556     catch (std::bad_alloc)
     1556    catch (std::bad_alloc &)
    15571557    {
    15581558        rc = VERR_NO_MEMORY;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette