Skip to content
Snippets Groups Projects
Commit cf5f4c12 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Removed check to NULL after use.

parent 2d44472b
No related branches found
No related tags found
No related merge requests found
......@@ -114,12 +114,9 @@ int heap_insert(struct heap *h, void *e)
h->data = realloc(h->data, (h->max_size + 1) * h->elm_size);
}
if(h)
{
h->num++;
memcpy(HELEMENT(h,h->num),e,h->elm_size);
_heap_bubble_up(h,h->num);
}
h->num++;
memcpy(HELEMENT(h,h->num),e,h->elm_size);
_heap_bubble_up(h,h->num);
return h->data ? 1 :0 ;
}
......
......@@ -14,7 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*!
* \file fdset.h
* \file heap.h
*
* \author Ondrej Filip <ondrej.filip@nic.cz>
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment