You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm still seeing one left-over after STR #4661 fix.
The scheduler crashes in cupsdLogJob() in
PWG_JobState"=%s", job_states[job->state_value - IPP_JSTATE_PENDING],
because job->state_value == 0.
Since IPP_JSTATE_PENDING == 3 we try to get job_states[-3].
After fixing (like in the attached patch) this one the scheduler seems to finally start & work OK.
The text was updated successfully, but these errors were encountered:
From d6474c395e14b3079dd198fadf7427c67412e816 Mon Sep 17 00:00:00 2001
From: Jiri Popelka jpopelka@redhat.com
Date: Mon, 10 Aug 2015 17:12:32 +0200
Subject: [PATCH] Fix index out of range in cupsdLogJob()
Version: 2.1rc1
CUPS.org User: jpopelka
I'm still seeing one left-over after STR #4661 fix.
The scheduler crashes in cupsdLogJob() in
PWG_JobState"=%s", job_states[job->state_value - IPP_JSTATE_PENDING],
because job->state_value == 0.
Since IPP_JSTATE_PENDING == 3 we try to get job_states[-3].
After fixing (like in the attached patch) this one the scheduler seems to finally start & work OK.
The text was updated successfully, but these errors were encountered: