]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 531243: Bugzilla crashes on show_bug if it's hit while a custom field is being...
authorFrédéric Buclin <LpSolit@gmail.com>
Thu, 18 Oct 2012 23:24:10 +0000 (01:24 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Thu, 18 Oct 2012 23:24:10 +0000 (01:24 +0200)
r=justdave a=LpSolit

Bugzilla/Field.pm

index dbee5df3d1467c9b54ecd6e3fc14d629fdd0bb79..81677c7ea34a753a5503fd05a8e76a017252828e 100644 (file)
@@ -1016,7 +1016,11 @@ sub create {
     # the parameter isn't sent to create().
     $params->{sortkey} = undef if !exists $params->{sortkey};
     $params->{type} ||= 0;
-    
+    # We mark the custom field as obsolete till it has been fully created,
+    # to avoid race conditions when viewing bugs at the same time.
+    my $is_obsolete = $params->{obsolete};
+    $params->{obsolete} = 1 if $params->{custom};
+
     $dbh->bz_start_transaction();
     $class->check_required_create_fields(@_);
     my $field_values      = $class->run_create_validators($params);
@@ -1045,6 +1049,10 @@ sub create {
             # Insert a default value of "---" into the legal values table.
             $dbh->do("INSERT INTO $name (value) VALUES ('---')");
         }
+
+        # Restore the original obsolete state of the custom field.
+        $dbh->do('UPDATE fielddefs SET obsolete = 0 WHERE id = ?', undef, $field->id)
+          unless $is_obsolete;
     }
 
     return $field;