]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Change to shared header file unrelated to open-vm-tools.
authorOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:54 +0000 (11:23 -0700)
committerOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:54 +0000 (11:23 -0700)
open-vm-tools/lib/include/circList.h

index 61b062f4985214b0d3a3219b332aefe9ac146839..383be8fce8a707fde9be4971f36b4f6b190944f5 100644 (file)
@@ -1,5 +1,5 @@
 /*********************************************************
- * Copyright (C) 1998-2016 VMware, Inc. All rights reserved.
+ * Copyright (C) 1998-2017 VMware, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published
@@ -267,9 +267,6 @@ CircList_DeleteItem(ListItem *p,         // IN
 {
    ListItem *next;
 
-   ASSERT(p);
-   ASSERT(headp);
-
    next = p->next;
    if (p == next) {
       *headp = NULL;