Do not call wglShareLists is ctxt is null

This commit is contained in:
tomaka 2015-02-23 15:37:23 +01:00
parent d147200c02
commit e04288f812

View file

@ -397,7 +397,7 @@ fn create_context(extra: Option<(&gl::wgl_extra::Wgl, &BuilderAttribs<'static>)>
None => {
unsafe {
let ctxt = gl::wgl::CreateContext(hdc as *const libc::c_void);
if !share.is_null() {
if !ctxt.is_null() && !share.is_null() {
gl::wgl::ShareLists(share as *const libc::c_void, ctxt);
};
ctxt